Skip to main content

IListDictionary_NodeKeyValueCollectionMethods

Trait IListDictionary_NodeKeyValueCollectionMethods 

Source
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§

Source

fn ctor(self, list: impl Into<ListDictionary>, is_keys: impl Into<bool>)

.ctor(crate::system::collections::specialized::listdictionary::ListDictionary, bool) overload

Source

fn system_collections_i_collection_copy_to( self, array: impl Into<IlInstance>, index: impl Into<i32>, )

System.Collections.ICollection.CopyTo(::unity::IlInstance, i32) overload

Source

fn system_collections_i_collection_get_count(self) -> i32

System.Collections.ICollection.get_Count() overload

Source

fn system_collections_i_collection_get_is_synchronized(self) -> bool

System.Collections.ICollection.get_IsSynchronized() overload

Source

fn system_collections_i_collection_get_sync_root(self) -> Object

System.Collections.ICollection.get_SyncRoot() overload

Source

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§

Source§

impl<__T: IListDictionary_NodeKeyValueCollection> IListDictionary_NodeKeyValueCollectionMethods for __T

Available on crate feature system-collections-specialized-listdictionary only.