pub trait IListDictionary_NodeKeyValueCollectionMethods: IListDictionary_NodeKeyValueCollection {
// Provided methods
fn ctor(self, list: impl Into<ListDictionary>, is_keys: impl Into<bool>) { ... }
fn system_collections_i_collection_copy_to(
self,
array: impl Into<IlInstance>,
index: impl Into<i32>,
) { ... }
fn system_collections_i_collection_get_count(self) -> i32 { ... }
fn system_collections_i_collection_get_is_synchronized(self) -> bool { ... }
fn system_collections_i_collection_get_sync_root(self) -> Object { ... }
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator { ... }
}Provided Methods§
Sourcefn ctor(self, list: impl Into<ListDictionary>, is_keys: impl Into<bool>)
fn ctor(self, list: impl Into<ListDictionary>, is_keys: impl Into<bool>)
.ctor(crate::system::collections::specialized::listdictionary::ListDictionary, bool) overload
Sourcefn system_collections_i_collection_copy_to(
self,
array: impl Into<IlInstance>,
index: impl Into<i32>,
)
fn system_collections_i_collection_copy_to( self, array: impl Into<IlInstance>, index: impl Into<i32>, )
System.Collections.ICollection.CopyTo(::unity::IlInstance, i32) overload
Sourcefn system_collections_i_collection_get_count(self) -> i32
fn system_collections_i_collection_get_count(self) -> i32
System.Collections.ICollection.get_Count() 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 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 system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
fn system_collections_i_enumerable_get_enumerator(self) -> IEnumerator
System.Collections.IEnumerable.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: IListDictionary_NodeKeyValueCollection> IListDictionary_NodeKeyValueCollectionMethods for __T
Available on crate feature
system-collections-specialized-listdictionary only.