Struct lambda_extension::tracing::subscriber::fmt::Subscriber
pub struct Subscriber<N = DefaultFields, E = Format, 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§
§impl Subscriber
impl Subscriber
pub 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.
pub fn builder() -> SubscriberBuilder
pub fn builder() -> SubscriberBuilder
Returns a new SubscriberBuilder for configuring a format subscriber.
pub fn new() -> Subscriber
pub fn new() -> Subscriber
Returns a new format subscriber with the default configuration.
Trait Implementations§
§impl<N, E, F, W> Debug for Subscriber<N, E, F, W>
impl<N, E, F, W> Debug for Subscriber<N, E, F, W>
§impl Default for Subscriber
impl Default for Subscriber
§fn default() -> Subscriber
fn default() -> Subscriber
Returns the “default value” for a type. Read more
§impl<'a, N, E, F, W> LookupSpan<'a> for Subscriber<N, E, F, W>
impl<'a, N, E, F, W> LookupSpan<'a> for Subscriber<N, E, F, W>
§type Data = <Layered<F, Layered<Layer<Registry, N, E, W>, Registry>> as LookupSpan<'a>>::Data
type Data = <Layered<F, Layered<Layer<Registry, N, E, W>, Registry>> as LookupSpan<'a>>::Data
The type of span data stored in this registry.
§fn span_data(
&'a self,
id: &Id
) -> Option<<Subscriber<N, E, F, W> as LookupSpan<'a>>::Data>
fn span_data( &'a self, id: &Id ) -> Option<<Subscriber<N, E, F, W> as LookupSpan<'a>>::Data>
Returns the
SpanData for a given Id, if it exists.§fn register_filter(&mut self) -> FilterId
fn register_filter(&mut self) -> FilterId
§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<Layered<Layer<Registry, N, E, W>, Registry>> + 'static,
W: for<'writer> MakeWriter<'writer> + 'static,
Layered<F, Layered<Layer<Registry, N, E, W>, Registry>>: 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<Layered<Layer<Registry, N, E, W>, Registry>> + 'static,
W: for<'writer> MakeWriter<'writer> + 'static,
Layered<F, Layered<Layer<Registry, N, E, W>, Registry>>: Subscriber,
Layer<Registry, N, E, W>: Layer<Registry>,
§fn register_callsite(&self, meta: &'static Metadata<'static>) -> Interest
fn register_callsite(&self, meta: &'static Metadata<'static>) -> Interest
§fn new_span(&self, attrs: &Attributes<'_>) -> Id
fn new_span(&self, attrs: &Attributes<'_>) -> Id
§fn record_follows_from(&self, span: &Id, follows: &Id)
fn record_follows_from(&self, span: &Id, follows: &Id)
§fn event_enabled(&self, event: &Event<'_>) -> bool
fn event_enabled(&self, event: &Event<'_>) -> bool
§fn current_span(&self) -> Current
fn current_span(&self) -> Current
Returns a type representing this subscriber’s view of the current span. Read more
§fn clone_span(&self, id: &Id) -> Id
fn clone_span(&self, id: &Id) -> Id
§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 more§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 more§fn on_register_dispatch(&self, subscriber: &Dispatch)
fn on_register_dispatch(&self, subscriber: &Dispatch)
Auto Trait Implementations§
impl<N, E, F, W> RefUnwindSafe for Subscriber<N, E, F, W>
impl<N, E, F, W> Send for Subscriber<N, E, F, W>
impl<N, E, F, W> Sync for Subscriber<N, E, F, W>
impl<N, E, F, W> Unpin for Subscriber<N, E, F, W>
impl<N = DefaultFields, E = Format, F = LevelFilter, W = fn() -> Stdout> !UnwindSafe for Subscriber<N, E, F, W>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
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> ⓘ
§impl<T> SubscriberInitExt for T
impl<T> SubscriberInitExt for T
§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 more§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 more§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