Struct tracing_subscriber::registry::SpanRef[][src]

pub struct SpanRef<'a, R: LookupSpan<'a>> { /* fields omitted */ }
Expand description

A reference to span data and the associated registry.

This type implements all the same methods as SpanData, and provides additional methods for querying the registry based on values from the span.

Implementations

Returns this span’s ID.

Returns a static reference to the span’s metadata.

Returns the span’s name,

Returns a list of fields defined by the span.

Returns the ID of this span’s parent, or None if this span is the root of its trace tree.

Returns a SpanRef describing this span’s parent, or None if this span is the root of its trace tree.

Returns an iterator over all parents of this span, starting with the immediate parent.

The iterator will first return the span’s immediate parent, followed by that span’s parent, followed by that span’s parent, and so on, until a it reaches a root span.

Returns an iterator over all parents of this span, starting with the root of the trace tree.

The iterator will return the root of the trace tree, followed by the next span, and then the next, until this span’s immediate parent is returned.

Note: if the “smallvec” feature flag is not enabled, this may allocate.

Returns a reference to this span’s Extensions.

The extensions may be used by Layers to store additional data describing the span.

Returns a mutable reference to this span’s Extensions.

The extensions may be used by Layers to store additional data describing the span.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.