pub trait IListBuffer_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn get_count(self) -> i32
where Self: Sized { ... }
fn get_capacity(self) -> i32
where Self: Sized { ... }
fn get_item(self) -> (*mut T0, i32)
where Self: Sized { ... }
fn get_unchecked(self) -> (*mut T0, i32)
where Self: Sized { ... }
fn try_add(self) -> (bool, T0)
where Self: Sized { ... }
fn try_copy_to(self, other: ListBuffer_1<T0>) -> bool
where Self: Sized { ... }
}Provided Methods§
fn get_count(self) -> i32where
Self: Sized,
fn get_capacity(self) -> i32where
Self: Sized,
fn get_item(self) -> (*mut T0, i32)where
Self: Sized,
fn get_unchecked(self) -> (*mut T0, i32)where
Self: Sized,
fn try_add(self) -> (bool, T0)where
Self: Sized,
fn try_copy_to(self, other: ListBuffer_1<T0>) -> boolwhere
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.