Skip to main content

IListWithEvents_1

Trait IListWithEvents_1 

Source
pub trait IListWithEvents_1<T0: ClassIdentity>: IObject {
    // Provided methods
    fn m_list(self) -> List_1<T0> { ... }
    fn set_m_list(self, value: List_1<T0>) { ... }
    fn on_element_added(self) -> Action_1<T0> { ... }
    fn set_on_element_added(self, value: Action_1<T0>) { ... }
    fn on_element_removed(self) -> Action_1<T0> { ... }
    fn set_on_element_removed(self, value: Action_1<T0>) { ... }
}

Provided Methods§

Source

fn m_list(self) -> List_1<T0>

Source

fn set_m_list(self, value: List_1<T0>)

Source

fn on_element_added(self) -> Action_1<T0>

Source

fn set_on_element_added(self, value: Action_1<T0>)

Source

fn on_element_removed(self) -> Action_1<T0>

Source

fn set_on_element_removed(self, value: Action_1<T0>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§