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

pub struct Subscriber<N = DefaultFields, E = Format<Full>, F = LevelFilter, W = fn() -> Stdout> { /* fields omitted */ }
This is supported on crate feature fmt only.

A Subscriber that logs formatted representations of tracing events.

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

Implementations

impl Subscriber[src]

pub const DEFAULT_MAX_LEVEL: LevelFilter[src]

This is supported on crate feature fmt only.

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

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

pub fn builder() -> SubscriberBuilder[src]

This is supported on crate feature fmt only.

Returns a new SubscriberBuilder for configuring a format subscriber.

pub fn new() -> Self[src]

This is supported on crate feature fmt only.

Returns a new format subscriber with the default configuration.

Trait Implementations

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

impl Default for Subscriber[src]

impl<'a, N, E, F, W> LookupSpan<'a> for Subscriber<N, E, F, W> where
    Layered<F, Formatter<N, E, W>>: LookupSpan<'a>, 
[src]

type Data = <Layered<F, Formatter<N, E, W>> as LookupSpan<'a>>::Data

The type of span data stored in this registry.

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

Auto Trait Implementations

impl<N = DefaultFields, E = Format<Full, SystemTime>, F = LevelFilter, W = fn() -> Stdout> !RefUnwindSafe for Subscriber<N, E, F, W>

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

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

impl<N = DefaultFields, E = Format<Full, SystemTime>, F = LevelFilter, W = fn() -> Stdout> !UnwindSafe for Subscriber<N, E, F, W>

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<S> SubscriberExt for S where
    S: Subscriber
[src]

impl<T> SubscriberInitExt for T where
    T: Into<Dispatch>, 
[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.