Struct lightning::list::ObjectList[][src]

pub struct ObjectList<T: Default + Copy, A: GlobalAlloc + Default> { /* fields omitted */ }

Implementations

impl<T: Default + Copy, A: GlobalAlloc + Default> ObjectList<T, A>[src]

pub fn with_capacity(cap: usize) -> Self[src]

pub fn new() -> Self[src]

pub fn push(&self, data: T)[src]

pub fn exclusive_push(&self, data: T)[src]

pub fn pop(&self) -> Option<T>[src]

pub fn drop_out_all<F>(&self, retain: Option<F>) where
    F: FnMut((usize, T)), 
[src]

pub fn prepend_with(&self, other: &Self)[src]

pub fn count(&self) -> usize[src]

pub fn iter(&self) -> ListIterator<T, A>

Notable traits for ListIterator<T, A>

impl<T: Default + Clone + Copy, A: GlobalAlloc + Default> Iterator for ListIterator<T, A> type Item = (usize, T);
[src]

Auto Trait Implementations

impl<T, A> RefUnwindSafe for ObjectList<T, A>

impl<T, A> Send for ObjectList<T, A>

impl<T, A> Sync for ObjectList<T, A>

impl<T, A> Unpin for ObjectList<T, A>

impl<T, A> UnwindSafe for ObjectList<T, A>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.