Skip to main content

IOrderedDictionary_OrderedDictionaryEnumeratorMethods

Trait IOrderedDictionary_OrderedDictionaryEnumeratorMethods 

Source
pub trait IOrderedDictionary_OrderedDictionaryEnumeratorMethods: IOrderedDictionary_OrderedDictionaryEnumerator {
    // Provided methods
    fn ctor(
        self,
        array: impl Into<ArrayList>,
        object_return_type: impl Into<i32>,
    ) { ... }
    fn get_current(self) -> Object { ... }
    fn get_entry(self) -> DictionaryEntry { ... }
    fn get_key(self) -> Object { ... }
    fn get_value(self) -> Object { ... }
    fn move_next(self) -> bool { ... }
    fn reset(self) { ... }
}

Provided Methods§

Source

fn ctor(self, array: impl Into<ArrayList>, object_return_type: impl Into<i32>)

.ctor(crate::system::collections::arraylist::ArrayList, i32) overload

Source

fn get_current(self) -> Object

get_Current() overload

Source

fn get_entry(self) -> DictionaryEntry

get_Entry() overload

Source

fn get_key(self) -> Object

get_Key() overload

Source

fn get_value(self) -> Object

get_Value() overload

Source

fn move_next(self) -> bool

MoveNext() overload

Source

fn reset(self)

Reset() overload

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§

Source§

impl<__T: IOrderedDictionary_OrderedDictionaryEnumerator> IOrderedDictionary_OrderedDictionaryEnumeratorMethods for __T

Available on crate feature system-collections-specialized-ordereddictionary only.