[][src]Struct tracing_subscriber::fmt::Subscriber

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

A Subscriber that logs formatted representations of tracing events.

This consists of an innerFormatter wrapped in a layer that performs filtering.

Methods

impl Subscriber[src]

pub const DEFAULT_MAX_LEVEL: LevelFilter[src]

The maximum verbosity level that is enabled by a Subscriber by default.

This can be overridden with the Builder::with_max_level method.

pub fn builder() -> Builder[src]

Returns a new Builder for configuring a format subscriber.

pub fn new() -> Self[src]

Returns a new format subscriber with the default configuration.

Trait Implementations

impl Default for Subscriber[src]

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

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

Auto Trait Implementations

impl<N, E, F, W> Send for Subscriber<N, E, F, W> where
    E: Send,
    F: Send,
    N: Send,
    W: Send

impl<N, E, F, W> Unpin for Subscriber<N, E, F, W> where
    E: Unpin,
    F: Unpin,
    N: Unpin,
    W: Unpin

impl<N, E, F, W> Sync for Subscriber<N, E, F, W> where
    E: Sync,
    F: Sync,
    N: Sync,
    W: Sync

impl<N, E, F, W> UnwindSafe for Subscriber<N, E, F, W> where
    E: UnwindSafe,
    F: UnwindSafe,
    N: UnwindSafe,
    W: UnwindSafe

impl<N, E, F, W> RefUnwindSafe for Subscriber<N, E, F, W> where
    E: RefUnwindSafe,
    F: 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]