[][src]Struct bi_channel::BiChannel

pub struct BiChannel<Sent, Received> {
    pub sender: Sender<Sent>,
    pub receiver: Receiver<Received>,
}

Opposite endpoints of two pairs of channels to send and receive.

Fields

sender: Sender<Sent>receiver: Receiver<Received>

Methods

impl<Sent, Received> BiChannel<Sent, Received>[src]

pub fn send(&self, send: Sent) -> Result<(), SendError<Sent>>[src]

pub fn recv(&self) -> Result<Received, RecvError>[src]

pub fn recv_timeout(
    &self,
    timeout: Duration
) -> Result<Received, RecvTimeoutError>
[src]

pub fn try_recv(&self) -> Result<Received, TryRecvError>[src]

Auto Trait Implementations

impl<Sent, Received> Send for BiChannel<Sent, Received> where
    Received: Send,
    Sent: Send

impl<Sent, Received> !Sync for BiChannel<Sent, Received>

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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