[][src]Enum slog_async::AsyncError

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

Errors reported by Async

Variants

Full

Could not send record to worker thread due to full queue

Fatal(Box<dyn Error>)

Fatal problem - mutex or channel poisoning issue

Trait Implementations

impl Debug for AsyncError[src]

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

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

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

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.