Struct futures::future::SharedError
[−]
[src]
pub struct SharedError<E> { /* fields omitted */ }
A wrapped error of the original future that is cloneable and implements Deref for ease of use.
Trait Implementations
impl<E: Clone> Clone for SharedError<E>
[src]
fn clone(&self) -> SharedError<E>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<E: Debug> Debug for SharedError<E>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<E> Deref for SharedError<E>
[src]
type Target = E
The resulting type after dereferencing.
fn deref(&self) -> &E
[src]
Dereferences the value.
impl<E> Display for SharedError<E> where
E: Display,
[src]
E: Display,
fn fmt(&self, f: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<E> Error for SharedError<E> where
E: Error,
[src]
E: Error,