Skip to main content

IntoProblem

Trait IntoProblem 

Source
pub trait IntoProblem {
    // Required method
    fn into_problem(self) -> Problem;
}
Expand description

Into a Problem.

Required Methods§

Source

fn into_problem(self) -> Problem

Into a Problem.

Implementors§

Source§

impl IntoProblem for Problem

Source§

impl<ErrorT> IntoProblem for ErrorT
where ErrorT: 'static + Error + Send + Sync,