Skip to main content

IIList_1_InterfaceMethods

Trait IIList_1_InterfaceMethods 

Source
pub trait IIList_1_InterfaceMethods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn get_item(self, index: i32) -> T0
       where Self: Sized + Into<IlInstance> { ... }
    fn set_item(self, index: i32, value: T0)
       where Self: Sized + Into<IlInstance> { ... }
    fn index_of(self, item: T0) -> i32
       where Self: Sized + Into<IlInstance> { ... }
    fn insert(self, index: i32, item: T0)
       where Self: Sized + Into<IlInstance> { ... }
    fn remove_at(self, index: i32)
       where Self: Sized + Into<IlInstance> { ... }
}

Provided Methods§

Source

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

Source

fn set_item(self, index: i32, value: T0)
where Self: Sized + Into<IlInstance>,

Source

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

Source

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

Source

fn remove_at(self, index: i32)
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§