pub trait ErrorExt:
Error
+ Sized
+ Send
+ 'static {
// Provided methods
fn with_message(self, message: impl Display) -> DynError { ... }
fn into_dyn_error(self) -> DynError { ... }
}Provided Methods§
fn with_message(self, message: impl Display) -> DynError
fn into_dyn_error(self) -> DynError
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".