pub trait SessionResultExt {
// Required methods
fn with_context(self, context: &'static str) -> Self;
fn with_source<E>(self, source: E) -> Self
where E: Error + Sync + Send + 'static;
}
Required Methods§
fn with_context(self, context: &'static str) -> Self
fn with_source<E>(self, source: E) -> Self
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.