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