pub struct SpanRef<'a, R>where
R: LookupSpan<'a>,{ /* private fields */ }
Expand description
Implementations§
source§impl<'a, R> SpanRef<'a, R>where
R: LookupSpan<'a>,
impl<'a, R> SpanRef<'a, R>where
R: LookupSpan<'a>,
sourcepub fn metadata(&self) -> &'static Metadata<'static>
pub fn metadata(&self) -> &'static Metadata<'static>
Returns a static reference to the span’s metadata.
sourcepub fn parent(&self) -> Option<SpanRef<'a, R>>
pub fn parent(&self) -> Option<SpanRef<'a, R>>
Returns a SpanRef
describing this span’s parent, or None
if this
span is the root of its trace tree.
sourcepub fn scope(&self) -> Scope<'a, R> ⓘ
pub fn scope(&self) -> Scope<'a, R> ⓘ
Returns an iterator over all parents of this span, starting with this span, ordered from leaf to root.
The iterator will first return the span, then the span’s immediate parent, followed by that span’s parent, and so on, until it reaches a root span.
use tracing::{span, Subscriber};
use tracing_subscriber::{
layer::{Context, Layer},
prelude::*,
registry::LookupSpan,
};
struct PrintingLayer;
impl<S> Layer<S> for PrintingLayer
where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
{
fn on_enter(&self, id: &span::Id, ctx: Context<S>) {
let span = ctx.span(id).unwrap();
let scope = span.scope().map(|span| span.name()).collect::<Vec<_>>();
println!("Entering span: {:?}", scope);
}
}
tracing::subscriber::with_default(tracing_subscriber::registry().with(PrintingLayer), || {
let _root = tracing::info_span!("root").entered();
// Prints: Entering span: ["root"]
let _child = tracing::info_span!("child").entered();
// Prints: Entering span: ["child", "root"]
let _leaf = tracing::info_span!("leaf").entered();
// Prints: Entering span: ["leaf", "child", "root"]
});
If the opposite order (from the root to this span) is desired, calling Scope::from_root
on
the returned iterator reverses the order.
impl<S> Layer<S> for PrintingLayer
where
S: Subscriber + for<'lookup> LookupSpan<'lookup>,
{
fn on_enter(&self, id: &span::Id, ctx: Context<S>) {
let span = ctx.span(id).unwrap();
let scope = span.scope().from_root().map(|span| span.name()).collect::<Vec<_>>();
println!("Entering span: {:?}", scope);
}
}
tracing::subscriber::with_default(tracing_subscriber::registry().with(PrintingLayer), || {
let _root = tracing::info_span!("root").entered();
// Prints: Entering span: ["root"]
let _child = tracing::info_span!("child").entered();
// Prints: Entering span: ["root", "child"]
let _leaf = tracing::info_span!("leaf").entered();
// Prints: Entering span: ["root", "child", "leaf"]
});
sourcepub fn extensions(&self) -> Extensions<'_>
pub fn extensions(&self) -> Extensions<'_>
Returns a reference to this span’s Extensions
.
The extensions may be used by Layer
s to store additional data
describing the span.
sourcepub fn extensions_mut(&self) -> ExtensionsMut<'_>
pub fn extensions_mut(&self) -> ExtensionsMut<'_>
Returns a mutable reference to this span’s Extensions
.
The extensions may be used by Layer
s to store additional data
describing the span.
Trait Implementations§
Auto Trait Implementations§
impl<'a, R> RefUnwindSafe for SpanRef<'a, R>
impl<'a, R> Send for SpanRef<'a, R>
impl<'a, R> Sync for SpanRef<'a, R>
impl<'a, R> Unpin for SpanRef<'a, R>
impl<'a, R> UnwindSafe for SpanRef<'a, R>
Blanket Implementations§
source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.