pub trait StackErrorExt:
StackError
+ Sized
+ 'static {
// Provided methods
fn into_any(self) -> AnyError { ... }
fn context(self, context: impl Display) -> AnyError { ... }
}Expand description
Extension methods for StackErrors that are Sized.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".