pub trait IDictionary_2_EnumeratorMethods<T0: ClassIdentity, T1: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(
self,
dictionary: Dictionary_2<T0, T1>,
get_enumerator_ret_type: i32,
)
where Self: Sized { ... }
fn move_next(self) -> bool
where Self: Sized { ... }
fn get_current(self) -> KeyValuePair_2<T0, T1>
where Self: Sized { ... }
fn dispose(self)
where Self: Sized { ... }
fn system_collections_i_enumerator_get_current(self) -> Object
where Self: Sized { ... }
fn system_collections_i_enumerator_reset(self)
where Self: Sized { ... }
fn system_collections_i_dictionary_enumerator_get_entry(
self,
) -> DictionaryEntry
where Self: Sized { ... }
fn system_collections_i_dictionary_enumerator_get_key(self) -> Object
where Self: Sized { ... }
fn system_collections_i_dictionary_enumerator_get_value(self) -> Object
where Self: Sized { ... }
}Provided Methods§
fn ctor(self, dictionary: Dictionary_2<T0, T1>, get_enumerator_ret_type: i32)where
Self: Sized,
fn move_next(self) -> boolwhere
Self: Sized,
fn get_current(self) -> KeyValuePair_2<T0, T1>where
Self: Sized,
fn dispose(self)where
Self: Sized,
fn system_collections_i_enumerator_get_current(self) -> Objectwhere
Self: Sized,
fn system_collections_i_enumerator_reset(self)where
Self: Sized,
fn system_collections_i_dictionary_enumerator_get_entry(self) -> DictionaryEntrywhere
Self: Sized,
fn system_collections_i_dictionary_enumerator_get_key(self) -> Objectwhere
Self: Sized,
fn system_collections_i_dictionary_enumerator_get_value(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.