pub trait ILargeArrayBuilder_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self, initialize: bool)
where Self: Sized { ... }
fn ctor_2(self, max_capacity: i32)
where Self: Sized { ... }
fn add_range(self, items: IEnumerable_1<T0>)
where Self: Sized { ... }
fn copy_to(self, array: Array<T0>, array_index: i32, count: i32)
where Self: Sized { ... }
fn get_buffer(self, index: i32) -> Array<T0>
where Self: Sized { ... }
fn to_array(self) -> Array<T0>
where Self: Sized { ... }
fn try_move(self) -> (bool, Array<T0>)
where Self: Sized { ... }
fn allocate_buffer(self)
where Self: Sized { ... }
}Provided Methods§
fn ctor(self, initialize: bool)where
Self: Sized,
fn ctor_2(self, max_capacity: i32)where
Self: Sized,
fn add_range(self, items: IEnumerable_1<T0>)where
Self: Sized,
fn copy_to(self, array: Array<T0>, array_index: i32, count: i32)where
Self: Sized,
fn get_buffer(self, index: i32) -> Array<T0>where
Self: Sized,
fn to_array(self) -> Array<T0>where
Self: Sized,
fn try_move(self) -> (bool, Array<T0>)where
Self: Sized,
fn allocate_buffer(self)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.