[][src]Struct tcp_channel::Receiver

pub struct Receiver<T: DeserializeOwned, R: Read = BufReader<TcpStream>> { /* fields omitted */ }

The receiving side of a channel.

Trait Implementations

impl<T: DeserializeOwned, R: Read> ChannelRecv<T> for Receiver<T, R>[src]

type Error = RecvError

Auto Trait Implementations

impl<T, R> Send for Receiver<T, R> where
    R: Send,
    T: Send

impl<T, R> Sync for Receiver<T, R> where
    R: Sync,
    T: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]