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
pub trait MapErrorNoContext<O, E> {
// Required method
fn map_error_context(self) -> Result<O, ErrorNoContext<E>>;
}
Map error caring type by wrapping it’s error value in ErrorNoContext