pub trait IPool_List_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self, max: i32)
where Self: Sized { ... }
fn get_count(self) -> i32
where Self: Sized { ... }
fn get_item(self, i: i32) -> T0
where Self: Sized { ... }
fn get(self, i: i32) -> T0
where Self: Sized { ... }
fn swap(self, index_a: i32, index_b: i32)
where Self: Sized { ... }
fn create(self) -> T0
where Self: Sized { ... }
fn delete(self, p: T0)
where Self: Sized { ... }
fn clear(self)
where Self: Sized { ... }
fn sort(self)
where Self: Sized { ... }
fn get_enumerator(self) -> IEnumerator_1<T0>
where Self: Sized { ... }
}Provided Methods§
fn ctor(self, max: i32)where
Self: Sized,
fn get_count(self) -> i32where
Self: Sized,
fn get_item(self, i: i32) -> T0where
Self: Sized,
fn get(self, i: i32) -> T0where
Self: Sized,
fn swap(self, index_a: i32, index_b: i32)where
Self: Sized,
fn create(self) -> T0where
Self: Sized,
fn delete(self, p: T0)where
Self: Sized,
fn clear(self)where
Self: Sized,
fn sort(self)where
Self: Sized,
fn get_enumerator(self) -> IEnumerator_1<T0>where
Self: Sized,
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.