pub trait MapProblem {
type ProblemCarrier;
// Required method
fn map_problem(self) -> Self::ProblemCarrier;
}Expand description
Map type containing error to type containing Problem
Required Associated Types§
type ProblemCarrier
Required Methods§
fn map_problem(self) -> Self::ProblemCarrier
Implementations on Foreign Types§
Source§impl<O, E> MapProblem for Result<O, E>
Mapping Result with error to Result with Problem
impl<O, E> MapProblem for Result<O, E>
Mapping Result with error to Result with Problem