pub trait IIDictionary_2_InterfaceMethods<T0: ClassIdentity, T1: ClassIdentity>: ClassIdentity {
// Provided methods
fn get_keys(self) -> ICollection_1<T0>
where Self: Sized + Into<IlInstance> { ... }
fn get_values(self) -> ICollection_1<T1>
where Self: Sized + Into<IlInstance> { ... }
fn add(self, key: T0, value: T1)
where Self: Sized + Into<IlInstance> { ... }
}Provided Methods§
fn get_keys(self) -> ICollection_1<T0>where
Self: Sized + Into<IlInstance>,
fn get_values(self) -> ICollection_1<T1>where
Self: Sized + Into<IlInstance>,
fn add(self, key: T0, value: T1)where
Self: Sized + Into<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.