pub trait IArrayBuilder_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self, capacity: i32)
where Self: Sized { ... }
fn get_capacity(self) -> i32
where Self: Sized { ... }
fn get_count(self) -> i32
where Self: Sized { ... }
fn get_item(self, index: i32) -> T0
where Self: Sized { ... }
fn add(self, item: T0)
where Self: Sized { ... }
fn to_array(self) -> Array<T0>
where Self: Sized { ... }
fn unchecked_add(self, item: T0)
where Self: Sized { ... }
fn ensure_capacity(self, minimum: i32)
where Self: Sized { ... }
}Provided Methods§
fn ctor(self, capacity: i32)where
Self: Sized,
fn get_capacity(self) -> i32where
Self: Sized,
fn get_count(self) -> i32where
Self: Sized,
fn get_item(self, index: i32) -> T0where
Self: Sized,
fn add(self, item: T0)where
Self: Sized,
fn to_array(self) -> Array<T0>where
Self: Sized,
fn unchecked_add(self, item: T0)where
Self: Sized,
fn ensure_capacity(self, minimum: i32)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.