Enum slog_async::AsyncError
[−]
[src]
pub enum AsyncError {
Full,
Fatal(Box<Error>),
}Errors reported by Async
Variants
FullCould not send record to worker thread due to full queue
Fatal(Box<Error>)Fatal problem - mutex or channel poisoning issue
Trait Implementations
impl Debug for AsyncError[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<T> From<TrySendError<T>> for AsyncError[src]
fn from(_: TrySendError<T>) -> AsyncError[src]
Performs the conversion.
impl<T> From<TryLockError<T>> for AsyncError[src]
fn from(_: TryLockError<T>) -> AsyncError[src]
Performs the conversion.
impl<T> From<SendError<T>> for AsyncError[src]
fn from(_: SendError<T>) -> AsyncError[src]
Performs the conversion.
impl<T> From<PoisonError<T>> for AsyncError[src]
fn from(err: PoisonError<T>) -> AsyncError[src]
Performs the conversion.