Skip to main content

IICollection_1Methods

Trait IICollection_1Methods 

Source
pub trait IICollection_1Methods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn get_count(self) -> i32
       where Self: Sized + Into<IlInstance> { ... }
    fn get_is_read_only(self) -> bool
       where Self: Sized + Into<IlInstance> { ... }
    fn add(self, item: T0)
       where Self: Sized + Into<IlInstance> { ... }
    fn clear(self)
       where Self: Sized + Into<IlInstance> { ... }
    fn contains(self, item: T0) -> bool
       where Self: Sized + Into<IlInstance> { ... }
    fn copy_to(self, array: Array<T0>, array_index: i32)
       where Self: Sized + Into<IlInstance> { ... }
    fn remove(self, item: T0) -> bool
       where Self: Sized + Into<IlInstance> { ... }
}

Provided Methods§

Source

fn get_count(self) -> i32
where Self: Sized + Into<IlInstance>,

Source

fn get_is_read_only(self) -> bool
where Self: Sized + Into<IlInstance>,

Source

fn add(self, item: T0)
where Self: Sized + Into<IlInstance>,

Source

fn clear(self)
where Self: Sized + Into<IlInstance>,

Source

fn contains(self, item: T0) -> bool
where Self: Sized + Into<IlInstance>,

Source

fn copy_to(self, array: Array<T0>, array_index: i32)
where Self: Sized + Into<IlInstance>,

Source

fn remove(self, item: T0) -> bool
where Self: Sized + Into<IlInstance>,

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§