pub trait ISortedDictionary_2<T0: ClassIdentity, T1: ClassIdentity>: IObject {
// Provided methods
fn keys(self) -> SortedDictionary_2_KeyCollection<T0, T1> { ... }
fn set_keys(self, value: SortedDictionary_2_KeyCollection<T0, T1>) { ... }
fn values(self) -> SortedDictionary_2_ValueCollection<T0, T1> { ... }
fn set_values(self, value: SortedDictionary_2_ValueCollection<T0, T1>) { ... }
fn set(self) -> TreeSet_1<KeyValuePair_2<T0, T1>> { ... }
fn set_set(self, value: TreeSet_1<KeyValuePair_2<T0, T1>>) { ... }
}Provided Methods§
fn keys(self) -> SortedDictionary_2_KeyCollection<T0, T1>
fn set_keys(self, value: SortedDictionary_2_KeyCollection<T0, T1>)
fn values(self) -> SortedDictionary_2_ValueCollection<T0, T1>
fn set_values(self, value: SortedDictionary_2_ValueCollection<T0, T1>)
fn set(self) -> TreeSet_1<KeyValuePair_2<T0, T1>>
fn set_set(self, value: TreeSet_1<KeyValuePair_2<T0, 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.