Struct lightning::list::List[][src]

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

Implementations

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

pub fn new(buffer_cap: usize) -> Self[src]

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

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

pub fn pop(&self) -> Option<(usize, 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]

Trait Implementations

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

impl<T: Default + Copy, A: GlobalAlloc + Default> Drop for List<T, A>[src]

Auto Trait Implementations

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

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

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

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

impl<T, A> UnwindSafe for List<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.