Skip to main content

IListBuffer_1Methods

Trait IListBuffer_1Methods 

Source
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§

Source

fn get_count(self) -> i32
where Self: Sized,

Source

fn get_capacity(self) -> i32
where Self: Sized,

Source

fn get_item(self) -> (*mut T0, i32)
where Self: Sized,

Source

fn get_unchecked(self) -> (*mut T0, i32)
where Self: Sized,

Source

fn try_add(self) -> (bool, T0)
where Self: Sized,

Source

fn try_copy_to(self, other: ListBuffer_1<T0>) -> bool
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.

Implementors§