pub trait AnyhowIntoProblem {
// Required method
fn into_problem(self) -> Problem;
}Available on crate feature
anyhow only.Expand description
Into problem.
Required Methods§
Sourcefn into_problem(self) -> Problem
fn into_problem(self) -> Problem
Into problem.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".