Trait async_transmit::TransmitExt[][src]

pub trait TransmitExt: Transmit {
    fn with<F, U>(self, f: F) -> With<Self, F, Self::Item, U, Self::Error>
    where
        Self: Sized + Send,
        Self::Item: Send,
        Self::Error: Send,
        F: FnMut(U) -> Self::Item + Send,
        U: Send
, { ... } }

An extension trait for Transmits that provides a variety of convenient functions.

Provided methods

fn with<F, U>(self, f: F) -> With<Self, F, Self::Item, U, Self::Error> where
    Self: Sized + Send,
    Self::Item: Send,
    Self::Error: Send,
    F: FnMut(U) -> Self::Item + Send,
    U: Send
[src]

Loading content...

Implementors

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

Loading content...