[][src]Struct locklessness::sync::mpmc_queue::MpmcQueueReceiver

pub struct MpmcQueueReceiver<T, H: Handle<HandleInner = MpmcQueueWrapper<T>>>(_);

Implementations

impl<T, H: Handle<HandleInner = MpmcQueueWrapper<T>>> MpmcQueueReceiver<T, H>[src]

pub fn try_clone(&self) -> Option<Self>[src]

pub fn close(&mut self)[src]

Trait Implementations

impl<T, H: Handle<HandleInner = MpmcQueueWrapper<T>>> Clone for MpmcQueueReceiver<T, H>[src]

impl<T: Debug, H: Debug + Handle<HandleInner = MpmcQueueWrapper<T>>> Debug for MpmcQueueReceiver<T, H>[src]

impl<T, H: Handle<HandleInner = MpmcQueueWrapper<T>>> Drop for MpmcQueueReceiver<T, H>[src]

impl<T, H: Handle<HandleInner = MpmcQueueWrapper<T>>> Stream for MpmcQueueReceiver<T, H>[src]

type Item = T

The type of item this stream will yield on success.

type Error = ()

The type of error this stream may generate.

Auto Trait Implementations

impl<T, H> RefUnwindSafe for MpmcQueueReceiver<T, H> where
    H: RefUnwindSafe

impl<T, H> Send for MpmcQueueReceiver<T, H> where
    H: Send

impl<T, H> Sync for MpmcQueueReceiver<T, H> where
    H: Sync

impl<T, H> Unpin for MpmcQueueReceiver<T, H> where
    H: Unpin

impl<T, H> UnwindSafe for MpmcQueueReceiver<T, H> where
    H: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.