pub trait IIDictionaryMethods: IIDictionary {
// Provided methods
fn get_item(self, key: impl Into<Object>) -> Object { ... }
fn set_item(self, key: impl Into<Object>, value: impl Into<Object>) { ... }
fn get_keys(self) -> ICollection { ... }
fn get_values(self) -> ICollection { ... }
fn contains(self, key: impl Into<Object>) -> bool { ... }
fn add(self, key: impl Into<Object>, value: impl Into<Object>) { ... }
fn get_is_read_only(self) -> bool { ... }
fn get_is_fixed_size(self) -> bool { ... }
fn get_enumerator(self) -> IDictionaryEnumerator { ... }
fn remove(self, key: impl Into<Object>) { ... }
}Provided Methods§
Sourcefn get_item(self, key: impl Into<Object>) -> Object
fn get_item(self, key: impl Into<Object>) -> Object
get_Item(crate::system::object::Object) overload
Sourcefn set_item(self, key: impl Into<Object>, value: impl Into<Object>)
fn set_item(self, key: impl Into<Object>, value: impl Into<Object>)
set_Item(crate::system::object::Object, crate::system::object::Object) overload
Sourcefn get_keys(self) -> ICollection
fn get_keys(self) -> ICollection
get_Keys() overload
Sourcefn get_values(self) -> ICollection
fn get_values(self) -> ICollection
get_Values() overload
Sourcefn contains(self, key: impl Into<Object>) -> bool
fn contains(self, key: impl Into<Object>) -> bool
Contains(crate::system::object::Object) overload
Sourcefn add(self, key: impl Into<Object>, value: impl Into<Object>)
fn add(self, key: impl Into<Object>, value: impl Into<Object>)
Add(crate::system::object::Object, crate::system::object::Object) overload
Sourcefn get_is_read_only(self) -> bool
fn get_is_read_only(self) -> bool
get_IsReadOnly() overload
Sourcefn get_is_fixed_size(self) -> bool
fn get_is_fixed_size(self) -> bool
get_IsFixedSize() overload
Sourcefn get_enumerator(self) -> IDictionaryEnumerator
fn get_enumerator(self) -> IDictionaryEnumerator
GetEnumerator() 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: IIDictionary> IIDictionaryMethods for __T
Available on crate feature
system-collections-idictionary only.