pub trait Reportable { // Required method fn report(self) -> Report<Self> where Self: Error + Sized; }
Provides the report method for std::error::Error, converting the error to a Report.
report
std::error::Error
Report