Trait tracing_subscriber::registry::LookupSpan
source · pub trait LookupSpan<'a> {
type Data: SpanData<'a>;
// Required method
fn span_data(&'a self, id: &Id) -> Option<Self::Data> ⓘ;
// Provided methods
fn span(&'a self, id: &Id) -> Option<SpanRef<'_, Self>> ⓘ
where Self: Sized { ... }
fn register_filter(&mut self) -> FilterId { ... }
}
Expand description
Required Associated Types§
Required Methods§
Provided Methods§
sourcefn span(&'a self, id: &Id) -> Option<SpanRef<'_, Self>> ⓘwhere
Self: Sized,
fn span(&'a self, id: &Id) -> Option<SpanRef<'_, Self>> ⓘwhere
Self: Sized,
Returns a SpanRef
for the span with the given Id
, if it exists.
A SpanRef
is similar to SpanData
, but it allows performing
additional lookups against the registryr that stores the wrapped data.
In general, users of the LookupSpan
trait should use this method
rather than the span_data
method; while implementors of this trait
should only implement span_data
.
sourcefn register_filter(&mut self) -> FilterId
fn register_filter(&mut self) -> FilterId
Available on crate feature
registry
only.Registers a Filter
for per-layer filtering with this
Subscriber
.
The Filter
can then use the returned FilterId
to
check if it previously enabled a span.
Panics
If this Subscriber
does not support per-layer filtering.
Implementors§
source§impl<'a> LookupSpan<'a> for Registry
Available on crate features registry
and std
only.
impl<'a> LookupSpan<'a> for Registry
Available on crate features
registry
and std
only.source§impl<'a, L, S> LookupSpan<'a> for Layered<L, S>where
S: Subscriber + LookupSpan<'a>,
impl<'a, L, S> LookupSpan<'a> for Layered<L, S>where
S: Subscriber + LookupSpan<'a>,
type Data = <S as LookupSpan<'a>>::Data
source§impl<'a, N, E, F, W> LookupSpan<'a> for Subscriber<N, E, F, W>
Available on crate features fmt
and std
only.
impl<'a, N, E, F, W> LookupSpan<'a> for Subscriber<N, E, F, W>
Available on crate features
fmt
and std
only.