Enum parallel_event_emitter::error::EventError [] [src]

pub enum EventError {
    PoisonError,
}

Error variants for event emitters

Variants

Converted from a PoisonError<T> to remove the T.

Still means the same thing, that a lock was poisoned by a panicking thread.

Trait Implementations

impl Debug for EventError
[src]

Formats the value using the given formatter.

impl Display for EventError
[src]

Formats the value using the given formatter. Read more

impl Error for EventError
[src]

A short description of the error. Read more

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

impl<T> From<PoisonError<T>> for EventError
[src]

Performs the conversion.