pub trait ISortedSet_1<T0: ClassIdentity>: IObject {
// Provided methods
fn root(self) -> SortedSet_1_Node<T0> { ... }
fn set_root(self, value: SortedSet_1_Node<T0>) { ... }
fn comparer(self) -> IComparer_1_Interface<T0> { ... }
fn set_comparer(self, value: IComparer_1_Interface<T0>) { ... }
fn count(self) -> i32 { ... }
fn set_count(self, value: i32) { ... }
fn version(self) -> i32 { ... }
fn set_version(self, value: i32) { ... }
fn sync_root(self) -> IlInstance { ... }
fn set_sync_root(self, value: IlInstance) { ... }
}Provided Methods§
fn root(self) -> SortedSet_1_Node<T0>
fn set_root(self, value: SortedSet_1_Node<T0>)
fn comparer(self) -> IComparer_1_Interface<T0>
fn set_comparer(self, value: IComparer_1_Interface<T0>)
fn count(self) -> i32
fn set_count(self, value: i32)
fn version(self) -> i32
fn set_version(self, value: i32)
fn sync_root(self) -> IlInstance
fn set_sync_root(self, value: IlInstance)
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.