pub trait StdErrorExtwhere
Self: StdError,{
// Provided methods
fn as_chain(&self) -> String { ... }
fn into_boxed(self) -> BoxError
where Self: Sized + Send + Sync + 'static { ... }
}Expand description
Extension methods for std errors.
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".