[][src]Trait splinter::channel::Receiver

pub trait Receiver<T>: Send {
    fn recv(&self) -> Result<T, RecvError>;
fn try_recv(&self) -> Result<T, TryRecvError>;
fn recv_timeout(&self, timeout: Duration) -> Result<T, RecvTimeoutError>; }

Required methods

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

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

fn recv_timeout(&self, timeout: Duration) -> Result<T, RecvTimeoutError>

Loading content...

Implementations on Foreign Types

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

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

Loading content...

Implementors

Loading content...