[][src]Struct bi_channel::SyncBiChannel

pub struct SyncBiChannel<Sent, Received> {
    pub sender: SyncSender<Sent>,
    pub receiver: Receiver<Received>,
}

Fields

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

Methods

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

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

pub fn try_send(&self, send: Sent) -> Result<(), TrySendError<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 SyncBiChannel<Sent, Received> where
    Received: Send,
    Sent: Send

impl<Sent, Received> !Sync for SyncBiChannel<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]