pub trait IDictionary_2_ValueCollectionMethods<T0: ClassIdentity, T1: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self, dictionary: Dictionary_2<T0, T1>)
where Self: Sized { ... }
fn get_enumerator(self) -> Dictionary_2_ValueCollection_Enumerator<T0, T1>
where Self: Sized { ... }
fn copy_to(self, array: Array<T1>, index: i32)
where Self: Sized { ... }
fn get_count(self) -> i32
where Self: Sized { ... }
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
where Self: Sized { ... }
fn system_collections_i_collection_copy_to(
self,
array: IlInstance,
index: i32,
)
where Self: Sized { ... }
fn system_collections_i_collection_get_is_synchronized(self) -> bool
where Self: Sized { ... }
fn system_collections_i_collection_get_sync_root(self) -> Object
where Self: Sized { ... }
}Provided Methods§
fn ctor(self, dictionary: Dictionary_2<T0, T1>)where
Self: Sized,
fn get_enumerator(self) -> Dictionary_2_ValueCollection_Enumerator<T0, T1>where
Self: Sized,
fn copy_to(self, array: Array<T1>, index: i32)where
Self: Sized,
fn get_count(self) -> i32where
Self: Sized,
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumeratorwhere
Self: Sized,
fn system_collections_i_collection_copy_to(self, array: IlInstance, index: i32)where
Self: Sized,
fn system_collections_i_collection_get_is_synchronized(self) -> boolwhere
Self: Sized,
fn system_collections_i_collection_get_sync_root(self) -> Objectwhere
Self: Sized,
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.