pub trait PreventEraseError: Sized {
// Provided methods
fn into_internal(self) -> impl Any { ... }
fn context(self) -> impl Any { ... }
fn with_context(self, _: impl Any) -> impl Any { ... }
}Expand description
See DbError
Provided Methods§
fn into_internal(self) -> impl Any
fn context(self) -> impl Any
fn with_context(self, _: impl Any) -> impl Any
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.