Skip to main content

IHashtable_KeyCollectionMethods

Trait IHashtable_KeyCollectionMethods 

Source
pub trait IHashtable_KeyCollectionMethods: IHashtable_KeyCollection {
    // Provided methods
    fn ctor(self, hashtable: impl Into<Hashtable>) { ... }
    fn copy_to(self, array: impl Into<IlInstance>, array_index: impl Into<i32>) { ... }
    fn get_enumerator(self) -> IEnumerator { ... }
    fn get_is_synchronized(self) -> bool { ... }
    fn get_sync_root(self) -> Object { ... }
    fn get_count(self) -> i32 { ... }
}

Provided Methods§

Source

fn ctor(self, hashtable: impl Into<Hashtable>)

.ctor(crate::system::collections::hashtable::Hashtable) overload

Source

fn copy_to(self, array: impl Into<IlInstance>, array_index: impl Into<i32>)

CopyTo(::unity::IlInstance, i32) overload

Source

fn get_enumerator(self) -> IEnumerator

GetEnumerator() overload

Source

fn get_is_synchronized(self) -> bool

get_IsSynchronized() overload

Source

fn get_sync_root(self) -> Object

get_SyncRoot() overload

Source

fn get_count(self) -> i32

get_Count() 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: IHashtable_KeyCollection> IHashtable_KeyCollectionMethods for __T

Available on crate feature system-collections-hashtable only.