Skip to main content

MapErr

Trait MapErr 

Source
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>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

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

Implementors§