pub trait IIDictionaryEnumeratorMethods: IIDictionaryEnumerator {
// Provided methods
fn get_key(self) -> Object { ... }
fn get_value(self) -> Object { ... }
fn get_entry(self) -> DictionaryEntry { ... }
}Provided Methods§
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: IIDictionaryEnumerator> IIDictionaryEnumeratorMethods for __T
Available on crate feature
system-collections-idictionaryenumerator only.