Struct nbchan::oneshot::Receiver[][src]

pub struct Receiver<T>(_);

The receiving-half of an asynchronous oneshot channel.

Methods

impl<T> Receiver<T>
[src]

Attempts to return a pending value on this receiver without blocking.

Trait Implementations

impl<T: Debug> Debug for Receiver<T>
[src]

Formats the value using the given formatter. Read more

impl<T> Drop for Receiver<T>
[src]

Executes the destructor for this type. Read more

impl<T: Send> Send for Receiver<T>
[src]

Auto Trait Implementations

impl<T> !Sync for Receiver<T>