pub trait IFastAction_3<T0: ClassIdentity, T1: ClassIdentity, T2: ClassIdentity>: IObject {
// Provided methods
fn delegates(self) -> LinkedList_1<Action_3<T0, T1, T2>> { ... }
fn set_delegates(self, value: LinkedList_1<Action_3<T0, T1, T2>>) { ... }
fn lookup(
self,
) -> Dictionary_2<Action_3<T0, T1, T2>, LinkedListNode_1<Action_3<T0, T1, T2>>> { ... }
fn set_lookup(
self,
value: Dictionary_2<Action_3<T0, T1, T2>, LinkedListNode_1<Action_3<T0, T1, T2>>>,
) { ... }
}Provided Methods§
fn delegates(self) -> LinkedList_1<Action_3<T0, T1, T2>>
fn set_delegates(self, value: LinkedList_1<Action_3<T0, T1, T2>>)
fn lookup( self, ) -> Dictionary_2<Action_3<T0, T1, T2>, LinkedListNode_1<Action_3<T0, T1, T2>>>
fn set_lookup( self, value: Dictionary_2<Action_3<T0, T1, T2>, LinkedListNode_1<Action_3<T0, T1, T2>>>, )
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.