Struct tracing_subscriber::fmt::Subscriber
source · pub struct Subscriber<N = DefaultFields, E = Format<Full>, F = LevelFilter, W = fn() -> Stdout> { /* private fields */ }
Expand description
A Subscriber
that logs formatted representations of tracing
events.
This consists of an inner Formatter
wrapped in a layer that performs filtering.
Implementations§
source§impl Subscriber
impl Subscriber
sourcepub const DEFAULT_MAX_LEVEL: LevelFilter = LevelFilter::INFO
pub const DEFAULT_MAX_LEVEL: LevelFilter = LevelFilter::INFO
The maximum verbosity level that is enabled by a Subscriber
by
default.
This can be overridden with the SubscriberBuilder::with_max_level
method.
sourcepub fn builder() -> SubscriberBuilder
pub fn builder() -> SubscriberBuilder
Returns a new SubscriberBuilder
for configuring a format subscriber.
Trait Implementations§
source§impl Default for Subscriber
impl Default for Subscriber
source§impl<'a, N, E, F, W> LookupSpan<'a> for Subscriber<N, E, F, W>where
Layered<F, Formatter<N, E, W>>: LookupSpan<'a>,
impl<'a, N, E, F, W> LookupSpan<'a> for Subscriber<N, E, F, W>where
Layered<F, Formatter<N, E, W>>: LookupSpan<'a>,
§type Data = <Layered<F, Layered<Layer<Registry, N, E, W>, Registry, Registry>, Layered<Layer<Registry, N, E, W>, Registry, Registry>> as LookupSpan<'a>>::Data
type Data = <Layered<F, Layered<Layer<Registry, N, E, W>, Registry, Registry>, Layered<Layer<Registry, N, E, W>, Registry, Registry>> as LookupSpan<'a>>::Data
The type of span data stored in this registry.
source§fn register_filter(&mut self) -> FilterId
fn register_filter(&mut self) -> FilterId
source§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>,
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>,
source§fn register_callsite(&self, meta: &'static Metadata<'static>) -> Interest
fn register_callsite(&self, meta: &'static Metadata<'static>) -> Interest
source§fn new_span(&self, attrs: &Attributes<'_>) -> Id
fn new_span(&self, attrs: &Attributes<'_>) -> Id
source§fn record_follows_from(&self, span: &Id, follows: &Id)
fn record_follows_from(&self, span: &Id, follows: &Id)
source§fn current_span(&self) -> Current
fn current_span(&self) -> Current
Returns a type representing this subscriber’s view of the current span. Read more
source§fn clone_span(&self, id: &Id) -> Id
fn clone_span(&self, id: &Id) -> Id
source§fn max_level_hint(&self) -> Option<LevelFilter>
fn max_level_hint(&self) -> Option<LevelFilter>
Returns the highest verbosity level that this
Subscriber
will
enable, or None
, if the subscriber does not implement level-based
filtering or chooses not to implement this method. Read moresource§unsafe fn downcast_raw(&self, id: TypeId) -> Option<*const ()>
unsafe fn downcast_raw(&self, id: TypeId) -> Option<*const ()>
If
self
is the same type as the provided TypeId
, returns an untyped
*const
pointer to that type. Otherwise, returns None
. Read moresource§fn on_register_dispatch(&self, subscriber: &Dispatch)
fn on_register_dispatch(&self, subscriber: &Dispatch)
source§fn event_enabled(&self, event: &Event<'_>) -> bool
fn event_enabled(&self, event: &Event<'_>) -> bool
Auto Trait Implementations§
impl<N, E, F, W> RefUnwindSafe for Subscriber<N, E, F, W>where
E: RefUnwindSafe,
F: RefUnwindSafe,
N: RefUnwindSafe,
W: RefUnwindSafe,
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§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<S> SubscriberExt for Swhere
S: Subscriber,
impl<S> SubscriberExt for Swhere
S: Subscriber,
source§impl<T> SubscriberInitExt for Twhere
T: Into<Dispatch>,
impl<T> SubscriberInitExt for Twhere
T: Into<Dispatch>,
source§fn set_default(self) -> DefaultGuard
fn set_default(self) -> DefaultGuard
Sets
self
as the default subscriber in the current scope, returning a
guard that will unset it when dropped. Read moresource§fn try_init(self) -> Result<(), TryInitError>
fn try_init(self) -> Result<(), TryInitError>
Attempts to set
self
as the global default subscriber in the current
scope, returning an error if one is already set. Read moresource§fn init(self)
fn init(self)
Attempts to set
self
as the global default subscriber in the current
scope, panicking if this fails. Read more