[][src]Trait mapinto::FutureMapErrInto

pub trait FutureMapErrInto<U> {
    type Output: Future<Error = U>;
    fn map_err_into(self) -> Self::Output;
}

Associated Types

type Output: Future<Error = U>

Loading content...

Required methods

fn map_err_into(self) -> Self::Output

Loading content...

Implementors

impl<F, U> FutureMapErrInto<U> for F where
    F: Future,
    U: From<F::Error>, 
[src]

type Output = MapErr<F, fn(_: F::Error) -> U>

Loading content...