ResultMapErrInto

Trait ResultMapErrInto 

Source
pub trait ResultMapErrInto<U> {
    type Output;

    // Required method
    fn map_err_into(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn map_err_into(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<T, E, U: From<E>> ResultMapErrInto<U> for Result<T, E>

Source§

type Output = Result<T, U>

Source§

fn map_err_into(self) -> Self::Output

Implementors§