Skip to main content

IntoCommonProblem

Trait IntoCommonProblem 

Source
pub trait IntoCommonProblem {
    // Required methods
    fn gloss(self) -> Problem;
    fn into_thread_problem(self) -> Problem;
}
Expand description

Into a common Problem.

Required Methods§

Source

fn gloss(self) -> Problem

Into a GlossError problem.

Source

fn into_thread_problem(self) -> Problem

Into a ThreadError problem.

Implementors§

Source§

impl<ToStringT> IntoCommonProblem for ToStringT
where ToStringT: ToString,