[][src]Trait problem::ResultToProblem

pub trait ResultToProblem<O> {
    fn map_problem(self) -> Result<O, Problem>;
}

Mapping Result with error to Result with Problem

Required methods

fn map_problem(self) -> Result<O, Problem>

Loading content...

Implementations on Foreign Types

impl<O, E> ResultToProblem<O> for Result<O, E> where
    E: ToProblem
[src]

Loading content...

Implementors

Loading content...