Struct tracing_subscriber::fmt::FmtContext [−][src]
pub struct FmtContext<'a, S, N> { /* fields omitted */ }
Expand description
Provides the current span context to a formatter.
Implementations
impl<'a, S, N> FmtContext<'a, S, N> where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
N: for<'writer> FormatFields<'writer> + 'static,
impl<'a, S, N> FmtContext<'a, S, N> where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
N: for<'writer> FormatFields<'writer> + 'static,
Visits every span in the current context with a closure.
The provided closure will be called first with the current span, and then with that span’s parent, and then that span’s parent, and so on until a root span is reached.
Returns metadata for the span with the given id
, if it exists.
If this returns None
, then no span exists for that ID (either it has
closed or the ID is invalid).
Returns stored data for the span with the given id
, if it exists.
If this returns None
, then no span exists for that ID (either it has
closed or the ID is invalid).
Returns true
if an active span exists for the given Id
.
pub fn lookup_current(&self) -> Option<SpanRef<'_, S>> where
S: for<'lookup> LookupSpan<'lookup>,
pub fn lookup_current(&self) -> Option<SpanRef<'_, S>> where
S: for<'lookup> LookupSpan<'lookup>,
Returns stored data for the span that the wrapped subscriber considers to be the current.
If this returns None
, then we are not currently within a span.
pub fn scope(&self) -> Scope<'_, S>ⓘ where
S: for<'lookup> LookupSpan<'lookup>,
👎 Deprecated since 0.2.19: wraps layer::Context::scope, which is deprecated
pub fn scope(&self) -> Scope<'_, S>ⓘ where
S: for<'lookup> LookupSpan<'lookup>,
wraps layer::Context::scope, which is deprecated
Returns an iterator over the stored data for all the spans in the current context, starting the root of the trace tree and ending with the current span.
Returns the current span for this formatter.
Returns the field formatter configured by the subscriber invoking
format_event
.
The event formatter may use the returned field formatter to format the fields of any events it records.
Trait Implementations
impl<'cx, 'writer, S, N> FormatFields<'writer> for FmtContext<'cx, S, N> where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
N: FormatFields<'writer> + 'static,
impl<'cx, 'writer, S, N> FormatFields<'writer> for FmtContext<'cx, S, N> where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
N: FormatFields<'writer> + 'static,
Format the provided fields
to the provided writer
, returning a result.