Struct slog_term::CompactFormat[][src]

pub struct CompactFormat<D> where
    D: Decorator
{ /* fields omitted */ }

Compact terminal-output formatting Drain

Note: Compact logging format is not Sync (thread-safe) and needs to be synchronized externally, as current output depends on the previous one.

Put it into a std::sync::Mutex or slog_async::Async worker-thread to serialize accesses to it.

Implementations

impl<D> CompactFormat<D> where
    D: Decorator
[src]

pub fn new(d: D) -> CompactFormatBuilder<D>[src]

New CompactFormatBuilder

Trait Implementations

impl<D> Drain for CompactFormat<D> where
    D: Decorator
[src]

type Ok = ()

Type returned by this drain Read more

type Err = Error

Type of potential errors that can be returned by this Drain

Auto Trait Implementations

impl<D> !RefUnwindSafe for CompactFormat<D>[src]

impl<D> Send for CompactFormat<D> where
    D: Send
[src]

impl<D> !Sync for CompactFormat<D>[src]

impl<D> Unpin for CompactFormat<D> where
    D: Unpin
[src]

impl<D> UnwindSafe for CompactFormat<D> where
    D: UnwindSafe
[src]

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.