pub trait MapErr<T>: Into<Result<T, Error>> {
    // Provided method
    fn convert_err(self) -> Result<T> { ... }
}

Provided Methods§

source

fn convert_err(self) -> Result<T>

Implementations on Foreign Types§

source§

impl<T> MapErr<T> for Result<T, Error>

Implementors§