pub trait IOrderedDictionaryMethods: IOrderedDictionary {
Show 24 methods
// Provided methods
fn ctor(self) { ... }
fn ctor_2(self, capacity: impl Into<i32>) { ... }
fn ctor_3(
self,
capacity: impl Into<i32>,
comparer: impl Into<IEqualityComparer>,
) { ... }
fn get_count(self) -> i32 { ... }
fn system_collections_i_dictionary_get_is_fixed_size(self) -> bool { ... }
fn get_is_read_only(self) -> bool { ... }
fn system_collections_i_collection_get_is_synchronized(self) -> bool { ... }
fn get_keys(self) -> ICollection { ... }
fn get_objects_array(self) -> ArrayList { ... }
fn get_objects_table(self) -> Hashtable { ... }
fn system_collections_i_collection_get_sync_root(self) -> Object { ... }
fn get_item(self, key: impl Into<Object>) -> Object { ... }
fn set_item(self, key: impl Into<Object>, value: impl Into<Object>) { ... }
fn get_values(self) -> ICollection { ... }
fn add(self, key: impl Into<Object>, value: impl Into<Object>) { ... }
fn clear(self) { ... }
fn contains(self, key: impl Into<Object>) -> bool { ... }
fn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>) { ... }
fn index_of_key(self, key: impl Into<Object>) -> i32 { ... }
fn on_deserialization(self, sender: impl Into<Object>) { ... }
fn remove(self, key: impl Into<Object>) { ... }
fn get_enumerator(self) -> IDictionaryEnumerator { ... }
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator { ... }
fn system_runtime_serialization_i_deserialization_callback_on_deserialization(
self,
sender: impl Into<Object>,
) { ... }
}Provided Methods§
Sourcefn ctor_3(
self,
capacity: impl Into<i32>,
comparer: impl Into<IEqualityComparer>,
)
fn ctor_3( self, capacity: impl Into<i32>, comparer: impl Into<IEqualityComparer>, )
.ctor(i32, crate::system::collections::iequalitycomparer::IEqualityComparer) overload
Sourcefn system_collections_i_dictionary_get_is_fixed_size(self) -> bool
fn system_collections_i_dictionary_get_is_fixed_size(self) -> bool
System.Collections.IDictionary.get_IsFixedSize() overload
Sourcefn get_is_read_only(self) -> bool
fn get_is_read_only(self) -> bool
get_IsReadOnly() overload
Sourcefn system_collections_i_collection_get_is_synchronized(self) -> bool
fn system_collections_i_collection_get_is_synchronized(self) -> bool
System.Collections.ICollection.get_IsSynchronized() overload
Sourcefn get_keys(self) -> ICollection
fn get_keys(self) -> ICollection
get_Keys() overload
Sourcefn get_objects_array(self) -> ArrayList
fn get_objects_array(self) -> ArrayList
get_objectsArray() overload
Sourcefn get_objects_table(self) -> Hashtable
fn get_objects_table(self) -> Hashtable
get_objectsTable() overload
Sourcefn system_collections_i_collection_get_sync_root(self) -> Object
fn system_collections_i_collection_get_sync_root(self) -> Object
System.Collections.ICollection.get_SyncRoot() overload
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_values(self) -> ICollection
fn get_values(self) -> ICollection
get_Values() 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 contains(self, key: impl Into<Object>) -> bool
fn contains(self, key: impl Into<Object>) -> bool
Contains(crate::system::object::Object) overload
Sourcefn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>)
fn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>)
CopyTo(::unity::IlInstance, i32) overload
Sourcefn index_of_key(self, key: impl Into<Object>) -> i32
fn index_of_key(self, key: impl Into<Object>) -> i32
IndexOfKey(crate::system::object::Object) overload
Sourcefn on_deserialization(self, sender: impl Into<Object>)
fn on_deserialization(self, sender: impl Into<Object>)
OnDeserialization(crate::system::object::Object) overload
Sourcefn get_enumerator(self) -> IDictionaryEnumerator
fn get_enumerator(self) -> IDictionaryEnumerator
GetEnumerator() overload
Sourcefn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
System.Collections.IEnumerable.GetEnumerator() overload
Sourcefn system_runtime_serialization_i_deserialization_callback_on_deserialization(
self,
sender: impl Into<Object>,
)
fn system_runtime_serialization_i_deserialization_callback_on_deserialization( self, sender: impl Into<Object>, )
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(crate::system::object::Object) 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: IOrderedDictionary> IOrderedDictionaryMethods for __T
system-collections-specialized-ordereddictionary only.