pub trait IntoCommonProblem {
// Required methods
fn gloss(self) -> Problem;
fn into_thread_problem(self) -> Problem;
}Expand description
Into a common Problem.
Required Methods§
Sourcefn gloss(self) -> Problem
fn gloss(self) -> Problem
Into a GlossError problem.
Sourcefn into_thread_problem(self) -> Problem
fn into_thread_problem(self) -> Problem
Into a ThreadError problem.