[][src]Struct locklessness::containers::mpmc_queue::MpmcQueueInner

pub struct MpmcQueueInner<T: Like<usize>> { /* fields omitted */ }

Implementations

impl<T: Like<usize>> MpmcQueueInner<T>[src]

pub fn new<I: IntoIterator<Item = T>>(iter: I) -> Self[src]

pub fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) where
    I::IntoIter: ExactSizeIterator
[src]

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

pub unsafe fn push(&self, value: &mut T) -> bool[src]

pub unsafe fn pop(&self, value: &mut T) -> bool[src]

Trait Implementations

impl<T: Debug + Like<usize>> Debug for MpmcQueueInner<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for MpmcQueueInner<T> where
    T: RefUnwindSafe

impl<T> Send for MpmcQueueInner<T> where
    T: Send

impl<T> Sync for MpmcQueueInner<T> where
    T: Sync

impl<T> Unpin for MpmcQueueInner<T> where
    T: Unpin

impl<T> UnwindSafe for MpmcQueueInner<T> where
    T: UnwindSafe

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, 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.