Trait eventuals::EventualExt[][src]

pub trait EventualExt: Sized + IntoReader {
    fn map<F, O, Fut>(self, f: F) -> Eventual<O>
    where
        F: 'static + Send + FnMut(Self::Output) -> Fut,
        O: Value,
        Fut: Send + Future<Output = O>
, { ... }
fn throttle(self, duration: Duration) -> Eventual<Self::Output> { ... }
fn pipe<F>(self, f: F) -> PipeHandle
    where
        F: 'static + Send + FnMut(Self::Output)
, { ... } }
Expand description

Fluent style API extensions for any Eventual reader.

Provided methods

Implementors