pub trait IntoProblemResult<OkT> { // Required method fn into_problem(self) -> Result<OkT, Problem>; }
Maps Err into a Problem.