Trait MapErrorNoContext

Source
pub trait MapErrorNoContext<O, E> {
    // Required method
    fn map_error_context(self) -> Result<O, ErrorNoContext<E>>;
}
Expand description

Map error caring type by wrapping it’s error value in ErrorNoContext

Required Methods§

Implementations on Foreign Types§

Source§

impl<O, E> MapErrorNoContext<O, E> for Result<O, E>

Implementors§