Enum slog_async::AsyncError [] [src]

pub enum AsyncError {
    Full,
    Fatal(Box<Error>),
}

Errors reported by Async

Variants

Could not send record to worker thread due to full queue

Fatal problem - mutex or channel poisoning issue

Trait Implementations

impl Debug for AsyncError
[src]

[src]

Formats the value using the given formatter. Read more

impl<T> From<TrySendError<T>> for AsyncError
[src]

[src]

Performs the conversion.

impl<T> From<TryLockError<T>> for AsyncError
[src]

[src]

Performs the conversion.

impl<T> From<SendError<T>> for AsyncError
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for AsyncError

impl !Sync for AsyncError