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
, { ... }
fn transmit_map_err<E, F>(self, f: F) -> TransmitMapErr<Self, F>
    where
        Self: Sized + Send,
        Self::Item: Send,
        F: FnOnce(Self::Error) -> E + Send
, { ... } }
Expand description

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

Provided methods

Implementors