[][src]Struct tracing_subscriber::fmt::Formatter

pub struct Formatter<N = NewRecorder, E = Format<Full>, W = fn() -> Stdout> { /* fields omitted */ }

A Subscriber that logs formatted representations of tracing events. This type only logs formatted events; it does not perform any filtering.

Trait Implementations

impl<N: Debug, E: Debug, W: Debug> Debug for Formatter<N, E, W>[src]

impl<N, E, W> Subscriber for Formatter<N, E, W> where
    N: for<'a> NewVisitor<'a> + 'static,
    E: FormatEvent<N> + 'static,
    W: MakeWriter + 'static, 
[src]

Auto Trait Implementations

impl<N, E, W> Send for Formatter<N, E, W> where
    E: Send,
    N: Send,
    W: Send

impl<N, E, W> Unpin for Formatter<N, E, W> where
    E: Unpin,
    N: Unpin,
    W: Unpin

impl<N, E, W> Sync for Formatter<N, E, W> where
    E: Sync,
    N: Sync,
    W: Sync

impl<N, E, W> UnwindSafe for Formatter<N, E, W> where
    E: UnwindSafe,
    N: UnwindSafe,
    W: UnwindSafe

impl<N, E, W> RefUnwindSafe for Formatter<N, E, W> where
    E: RefUnwindSafe,
    N: RefUnwindSafe,
    W: RefUnwindSafe

Blanket Implementations

impl<S> SubscriberExt for S where
    S: Subscriber
[src]

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

impl<T> From<T> for 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.

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

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

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

impl<T> Erased for T[src]