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

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

Implementations on Foreign Types

Implementors