pub trait ILinkNode_1<T0: ClassIdentity>: IObject {
// Provided methods
fn m_instance_id(self) -> i32 { ... }
fn set_m_instance_id(self, value: i32) { ... }
fn m_node(self) -> LinkedListNode_1<T0> { ... }
fn set_m_node(self, value: LinkedListNode_1<T0>) { ... }
}Provided Methods§
fn m_instance_id(self) -> i32
fn set_m_instance_id(self, value: i32)
fn m_node(self) -> LinkedListNode_1<T0>
fn set_m_node(self, value: LinkedListNode_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.