Skip to main content

IIDictionary_2_InterfaceMethods

Trait IIDictionary_2_InterfaceMethods 

Source
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§

Source

fn get_keys(self) -> ICollection_1<T0>
where Self: Sized + Into<IlInstance>,

Source

fn get_values(self) -> ICollection_1<T1>
where Self: Sized + Into<IlInstance>,

Source

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.

Implementors§