pub trait SendResultExt<T>: Sized {
// Required methods
fn format_send_err(self) -> Result<T, Error>;
fn format_send_err_with_context<C>(self, context: C) -> Result<T, Error>
where C: Display;
}
Required Methods§
fn format_send_err(self) -> Result<T, Error>
fn format_send_err_with_context<C>(self, context: C) -> Result<T, Error>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.