pub trait ILinkedListIndex_2<T0: ClassIdentity, T1: ClassIdentity>: IObject {
// Provided methods
fn m_linked_list(self) -> LinkedList_1<T1> { ... }
fn set_m_linked_list(self, value: LinkedList_1<T1>) { ... }
fn m_map(self) -> Dictionary_2<T0, LinkedListNode_1<T1>> { ... }
fn set_m_map(self, value: Dictionary_2<T0, LinkedListNode_1<T1>>) { ... }
}Provided Methods§
fn m_linked_list(self) -> LinkedList_1<T1>
fn set_m_linked_list(self, value: LinkedList_1<T1>)
fn m_map(self) -> Dictionary_2<T0, LinkedListNode_1<T1>>
fn set_m_map(self, value: Dictionary_2<T0, LinkedListNode_1<T1>>)
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.