Skip to main content

IReadOnlyCollectionBaseMethods

Trait IReadOnlyCollectionBaseMethods 

Source
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§

Source

fn get_inner_list(self) -> ArrayList

get_InnerList() overload

Source

fn get_count(self) -> i32

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_collection_copy_to( self, array: impl Into<IlInstance>, index: impl Into<i32>, )

System.Collections.ICollection.CopyTo(::unity::IlInstance, i32) overload

Source

fn get_enumerator(self) -> IEnumerator

GetEnumerator() overload

Source

fn ctor(self)

.ctor() 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: IReadOnlyCollectionBase> IReadOnlyCollectionBaseMethods for __T

Available on crate feature system-collections-readonlycollectionbase only.