Skip to main content

IDictionary_2_EnumeratorMethods

Trait IDictionary_2_EnumeratorMethods 

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

Source

fn ctor(self, dictionary: Dictionary_2<T0, T1>, get_enumerator_ret_type: i32)
where Self: Sized,

Source

fn move_next(self) -> bool
where Self: Sized,

Source

fn get_current(self) -> KeyValuePair_2<T0, T1>
where Self: Sized,

Source

fn dispose(self)
where Self: Sized,

Source

fn system_collections_i_enumerator_get_current(self) -> Object
where Self: Sized,

Source

fn system_collections_i_enumerator_reset(self)
where Self: Sized,

Source

fn system_collections_i_dictionary_enumerator_get_entry(self) -> DictionaryEntry
where Self: Sized,

Source

fn system_collections_i_dictionary_enumerator_get_key(self) -> Object
where Self: Sized,

Source

fn system_collections_i_dictionary_enumerator_get_value(self) -> Object
where 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.

Implementors§