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