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

Provided Methods

Implementations on Foreign Types

Implementors