Skip to main content

IConcurrentDictionary_2_DictionaryEnumeratorMethods

Trait IConcurrentDictionary_2_DictionaryEnumeratorMethods 

Source
pub trait IConcurrentDictionary_2_DictionaryEnumeratorMethods<T0: ClassIdentity, T1: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn ctor(self, dictionary: ConcurrentDictionary_2<T0, T1>)
       where Self: Sized { ... }
    fn get_entry(self) -> DictionaryEntry
       where Self: Sized { ... }
    fn get_key(self) -> Object
       where Self: Sized { ... }
    fn get_value(self) -> Object
       where Self: Sized { ... }
    fn get_current(self) -> Object
       where Self: Sized { ... }
    fn move_next(self) -> bool
       where Self: Sized { ... }
    fn reset(self)
       where Self: Sized { ... }
}

Provided Methods§

Source

fn ctor(self, dictionary: ConcurrentDictionary_2<T0, T1>)
where Self: Sized,

Source

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

Source

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

Source

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

Source

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

Source

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

Source

fn reset(self)
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§