[][src]Trait problem::MapProblem

pub trait MapProblem {
    type ProblemCarrier;
    fn map_problem(self) -> Self::ProblemCarrier;
}

Map type containing error to type containing Problem

Associated Types

Loading content...

Required methods

fn map_problem(self) -> Self::ProblemCarrier

Loading content...

Implementations on Foreign Types

impl<O, E> MapProblem for Result<O, E> where
    E: Into<Problem>, 
[src]

Mapping Result with error to Result with Problem

Loading content...

Implementors

Loading content...