pub trait IICollectionMethods: IICollection {
// Provided methods
fn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>) { ... }
fn get_count(self) -> i32 { ... }
fn get_sync_root(self) -> Object { ... }
fn get_is_synchronized(self) -> bool { ... }
}Provided Methods§
Sourcefn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>)
fn copy_to(self, array: impl Into<IlInstance>, index: impl Into<i32>)
CopyTo(::unity::IlInstance, i32) overload
Sourcefn get_sync_root(self) -> Object
fn get_sync_root(self) -> Object
get_SyncRoot() overload
Sourcefn get_is_synchronized(self) -> bool
fn get_is_synchronized(self) -> bool
get_IsSynchronized() 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: IICollection> IICollectionMethods for __T
Available on crate feature
system-collections-icollection only.