trait StorageErrorXContext<T> {
// Required method
fn context<C>(self, context: C) -> Result<T, StorageErrorX>
where C: Display;
}
Required Methods§
fn context<C>(self, context: C) -> Result<T, StorageErrorX>where
C: Display,
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.