Struct futures::future::SharedError [−][src]
pub struct SharedError<E> { /* fields omitted */ }
Expand description
A wrapped error of the original future that is cloneable and implements Deref for ease of use.
Trait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more
Auto Trait Implementations
impl<E> RefUnwindSafe for SharedError<E> where
E: RefUnwindSafe,
impl<E> Send for SharedError<E> where
E: Send + Sync,
impl<E> Sync for SharedError<E> where
E: Send + Sync,
impl<E> Unpin for SharedError<E>
impl<E> UnwindSafe for SharedError<E> where
E: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more