Struct abc::Error [] [src]

pub struct Error;

Unifies the errors thrown by a hive's operation.

The only errors expected within the hive code are associated with getting read and/or write locks on aspects of the hive's data. These errors occur if a thread panics while holding the lock -- a situation that we do not particularly expect.

Nevertheless, this Error represents a panic, most likely in one of the hive's worker threads.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Error for Error
[src]

A short description of the error. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.