Skip to main content

IOrderedDictionary_OrderedDictionaryKeyValueCollectionMethods

Trait IOrderedDictionary_OrderedDictionaryKeyValueCollectionMethods 

Source
pub trait IOrderedDictionary_OrderedDictionaryKeyValueCollectionMethods: IOrderedDictionary_OrderedDictionaryKeyValueCollection {
    // Provided methods
    fn ctor(self, array: impl Into<ArrayList>, 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, array: impl Into<ArrayList>, is_keys: impl Into<bool>)

.ctor(crate::system::collections::arraylist::ArrayList, 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: IOrderedDictionary_OrderedDictionaryKeyValueCollection> IOrderedDictionary_OrderedDictionaryKeyValueCollectionMethods for __T

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