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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".