Function eventuals::map[][src]

pub fn map<E, I, O, F, Fut>(source: E, f: F) -> Eventual<O> where
    E: IntoReader<Output = I>,
    F: 'static + Send + FnMut(I) -> Fut,
    I: Value,
    O: Value,
    Fut: Send + Future<Output = O>,