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§
Sourcefn ctor(self, hashtable: impl Into<Hashtable>, get_obj_ret_type: impl Into<i32>)
fn ctor(self, hashtable: impl Into<Hashtable>, get_obj_ret_type: impl Into<i32>)
.ctor(crate::system::collections::hashtable::Hashtable, i32) overload
Sourcefn get_entry(self) -> DictionaryEntry
fn get_entry(self) -> DictionaryEntry
get_Entry() overload
Sourcefn get_current(self) -> Object
fn get_current(self) -> Object
get_Current() 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§
impl<__T: IHashtable_HashtableEnumerator> IHashtable_HashtableEnumeratorMethods for __T
Available on crate feature
system-collections-hashtable only.