Skip to main content

IListDictionaryInternal_NodeKeyValueCollectionMethods

Trait IListDictionaryInternal_NodeKeyValueCollectionMethods 

Source
pub trait IListDictionaryInternal_NodeKeyValueCollectionMethods: IListDictionaryInternal_NodeKeyValueCollection {
    // Provided methods
    fn ctor(
        self,
        list: impl Into<ListDictionaryInternal>,
        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<ListDictionaryInternal>, is_keys: impl Into<bool>)

.ctor(crate::system::collections::listdictionaryinternal::ListDictionaryInternal, 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: IListDictionaryInternal_NodeKeyValueCollection> IListDictionaryInternal_NodeKeyValueCollectionMethods for __T

Available on crate feature system-collections-listdictionaryinternal only.