pub trait IReadOnlyCollectionBaseMethods: IReadOnlyCollectionBase {
// Provided methods
fn get_inner_list(self) -> ArrayList { ... }
fn 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_collection_copy_to(
self,
array: impl Into<IlInstance>,
index: impl Into<i32>,
) { ... }
fn get_enumerator(self) -> IEnumerator { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_inner_list(self) -> ArrayList
fn get_inner_list(self) -> ArrayList
get_InnerList() overload
Sourcefn system_collections_i_collection_get_is_synchronized(self) -> bool
fn system_collections_i_collection_get_is_synchronized(self) -> bool
System.Collections.ICollection.get_IsSynchronized() overload
Sourcefn system_collections_i_collection_get_sync_root(self) -> Object
fn system_collections_i_collection_get_sync_root(self) -> Object
System.Collections.ICollection.get_SyncRoot() overload
Sourcefn system_collections_i_collection_copy_to(
self,
array: impl Into<IlInstance>,
index: impl Into<i32>,
)
fn system_collections_i_collection_copy_to( self, array: impl Into<IlInstance>, index: impl Into<i32>, )
System.Collections.ICollection.CopyTo(::unity::IlInstance, i32) overload
Sourcefn get_enumerator(self) -> IEnumerator
fn get_enumerator(self) -> IEnumerator
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§
impl<__T: IReadOnlyCollectionBase> IReadOnlyCollectionBaseMethods for __T
Available on crate feature
system-collections-readonlycollectionbase only.