Enum slog::MutexDrainError [] [src]

pub enum MutexDrainError<D: Drain> {
    Mutex,
    Drain(D::Err),
}

Error returned by Mutex<D : Drain>

Variants

Error aquiring mutex

Error returned by drain

Trait Implementations

impl<D: Debug + Drain> Debug for MutexDrainError<D> where D::Err: Debug
[src]

Formats the value using the given formatter.

impl<'a, D: Drain> From<PoisonError<MutexGuard<'a, D>>> for MutexDrainError<D>
[src]

Performs the conversion.

impl<D: Drain> Display for MutexDrainError<D> where D::Err: Display
[src]

Formats the value using the given formatter.