Skip to main content

IHashtable_HashtableEnumeratorMethods

Trait IHashtable_HashtableEnumeratorMethods 

Source
pub trait IHashtable_HashtableEnumeratorMethods: IHashtable_HashtableEnumerator {
    // Provided methods
    fn ctor(
        self,
        hashtable: impl Into<Hashtable>,
        get_obj_ret_type: impl Into<i32>,
    ) { ... }
    fn clone(self) -> Object { ... }
    fn get_key(self) -> Object { ... }
    fn move_next(self) -> bool { ... }
    fn get_entry(self) -> DictionaryEntry { ... }
    fn get_current(self) -> Object { ... }
    fn get_value(self) -> Object { ... }
    fn reset(self) { ... }
}

Provided Methods§

Source

fn ctor(self, hashtable: impl Into<Hashtable>, get_obj_ret_type: impl Into<i32>)

.ctor(crate::system::collections::hashtable::Hashtable, i32) overload

Source

fn clone(self) -> Object

Clone() overload

Source

fn get_key(self) -> Object

get_Key() overload

Source

fn move_next(self) -> bool

MoveNext() overload

Source

fn get_entry(self) -> DictionaryEntry

get_Entry() overload

Source

fn get_current(self) -> Object

get_Current() overload

Source

fn get_value(self) -> Object

get_Value() 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: IHashtable_HashtableEnumerator> IHashtable_HashtableEnumeratorMethods for __T

Available on crate feature system-collections-hashtable only.