pub trait ISortedList_SyncSortedList: ISortedList {
// Provided methods
fn list(self) -> SortedList { ... }
fn set_list(self, value: SortedList) { ... }
fn root(self) -> IlInstance { ... }
fn set_root(self, value: IlInstance) { ... }
}Provided Methods§
fn list(self) -> SortedList
fn set_list(self, value: SortedList)
fn root(self) -> IlInstance
fn set_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.