pub trait Errors {
type Contextual;
// Required method
fn ctx(self, context: impl Display) -> Self::Contextual;
}Required Associated Types§
type Contextual
Required Methods§
fn ctx(self, context: impl Display) -> Self::Contextual
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.