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> Debug for SharedError<E> where
    E: Debug
[src]

[src]

Formats the value using the given formatter. Read more

impl<E> Deref for SharedError<E>
[src]

The resulting type after dereferencing.

Important traits for &'a mut I
[src]

Dereferences the value.

impl<E> Display for SharedError<E> where
    E: Display
[src]

[src]

Formats the value using the given formatter. Read more

impl<E> Error for SharedError<E> where
    E: Error
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl<E> Clone for SharedError<E> where
    E: Clone
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<E> Send for SharedError<E> where
    E: Send + Sync

impl<E> Sync for SharedError<E> where
    E: Send + Sync