Enum mkit::thread::Tx[][src]

pub enum Tx<Q, R = ()> {
    N(Sender<(Q, Option<Sender<R>>)>),
    S(SyncSender<(Q, Option<Sender<R>>)>),
}

IPC type, that enumerates as either mpsc::Sender or, mpsc::SyncSender channel.

The clone behavior is similar to mpsc::Sender or, mpsc::SyncSender.

Variants

Implementations

impl<Q, R> Tx<Q, R>[src]

pub fn post(&self, msg: Q) -> Result<()>[src]

Post a message to thread and don’t wait for response.

pub fn request(&self, request: Q) -> Result<R>[src]

Send a request message to thread and wait for a response.

Trait Implementations

impl<Q, R> Clone for Tx<Q, R>[src]

Auto Trait Implementations

impl<Q, R = ()> !RefUnwindSafe for Tx<Q, R>

impl<Q, R> Send for Tx<Q, R> where
    Q: Send,
    R: Send

impl<Q, R = ()> !Sync for Tx<Q, R>

impl<Q, R> Unpin for Tx<Q, R>

impl<Q, R = ()> !UnwindSafe for Tx<Q, R>

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.