[][src]Trait mapinto::FutureMapInto

pub trait FutureMapInto<U> {
    type Output: Future<Item = U>;
    fn map_into(self) -> Self::Output;
}

Associated Types

type Output: Future<Item = U>

Loading content...

Required methods

fn map_into(self) -> Self::Output

Loading content...

Implementors

impl<F, U> FutureMapInto<U> for F where
    F: Future,
    U: From<F::Item>, 
[src]

type Output = Map<F, fn(_: F::Item) -> U>

Loading content...