Enum eventual::AsyncError [] [src]

pub enum AsyncError<E: Send + 'static> {
    Failed(E),
    Aborted,
}

Variants

Methods

impl<E: Send + 'static> AsyncError<E>
[src]

Trait Implementations

impl<E: Eq + Send + 'static> Eq for AsyncError<E>
[src]

impl<E: PartialEq + Send + 'static> PartialEq for AsyncError<E>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<E: Send + Error + 'static> Error for AsyncError<E>
[src]

A short description of the error. Read more

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

impl<E: Send + 'static + Debug> Debug for AsyncError<E>
[src]

Formats the value using the given formatter.

impl<E: Send + 'static + Display> Display for AsyncError<E>
[src]

Formats the value using the given formatter. Read more