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§
fn get_item(self, index: i32) -> T0where
Self: Sized + Into<IlInstance>,
fn set_item(self, index: i32, value: T0)where
Self: Sized + Into<IlInstance>,
fn index_of(self, item: T0) -> i32where
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>,
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.