pub trait IListDictionary_NodeEnumeratorMethods: IListDictionary_NodeEnumerator {
// Provided methods
fn ctor(self, list: impl Into<ListDictionary>) { ... }
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§
Sourcefn ctor(self, list: impl Into<ListDictionary>)
fn ctor(self, list: impl Into<ListDictionary>)
.ctor(crate::system::collections::specialized::listdictionary::ListDictionary) overload
Sourcefn get_current(self) -> Object
fn get_current(self) -> Object
get_Current() overload
Sourcefn get_entry(self) -> DictionaryEntry
fn get_entry(self) -> DictionaryEntry
get_Entry() 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: IListDictionary_NodeEnumerator> IListDictionary_NodeEnumeratorMethods for __T
Available on crate feature
system-collections-specialized-listdictionary only.