pub trait ReportableError: Display {
type Stack: ReportableErrorStack;
}Expand description
A trait for error types which can be used in a Report.
Required Associated Types§
Sourcetype Stack: ReportableErrorStack
type Stack: ReportableErrorStack
The error stack type corresponding to this error.