Struct many2many::MReceiver [] [src]

pub struct MReceiver<T> {
    // some fields omitted
}

Methods

impl<T> MReceiver<T> where T: Send + Clone + 'static
[src]

fn unwrap(self) -> Receiver<T>

fn recv(&self) -> Result<T, RecvError>

fn try_recv(&self) -> Result<T, TryRecvError>

fn iter<'a>(&'a self) -> Iter<'a, T>

Trait Implementations

impl<T> From<Receiver<T>> for MReceiver<T> where T: Send + Clone + 'static
[src]

fn from(other: Receiver<T>) -> MReceiver<T>

Performs the conversion.

impl<T> Clone for MReceiver<T> where T: Send + Clone + 'static
[src]

fn clone(&self) -> MReceiver<T>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more