pub trait MapResult<T, E> {
// Required method
fn map_result(self) -> Result<T, E>;
}
Expand description
Maps a result into another result
Required Methods§
Sourcefn map_result(self) -> Result<T, E>
fn map_result(self) -> Result<T, E>
Maps a result into another result