[][src]Trait mapinto::FutureFlatMapErrInto

pub trait FutureFlatMapErrInto {
    type Output;
    fn flat_map_err_into(self) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

fn flat_map_err_into(self) -> Self::Output

Loading content...

Implementors

impl<F, E> FutureFlatMapErrInto for F where
    F: Future,
    F::Item: IntoFuture<Error = E>,
    F::Error: From<E>, 
[src]

type Output = AndThen<F, <<F::Item as IntoFuture>::Future as FutureMapErrInto<F::Error>>::Output, fn(_: F::Item) -> <<F::Item as IntoFuture>::Future as FutureMapErrInto<F::Error>>::Output>

Loading content...