Struct tracing_subscriber::layer::Scope[][src]

pub struct Scope<'a, L: LookupSpan<'a>>(_);
This is supported on crate feature registry only.

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.

This is returned by Context::scope.

Trait Implementations

impl<'a, L: LookupSpan<'a>> Debug for Scope<'a, L>[src]

impl<'a, L: LookupSpan<'a>> Iterator for Scope<'a, L>[src]

type Item = SpanRef<'a, L>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, L> RefUnwindSafe for Scope<'a, L> where
    L: RefUnwindSafe,
    <L as LookupSpan<'a>>::Data: RefUnwindSafe
[src]

impl<'a, L> Send for Scope<'a, L> where
    L: Sync,
    <L as LookupSpan<'a>>::Data: Send
[src]

impl<'a, L> Sync for Scope<'a, L> where
    L: Sync,
    <L as LookupSpan<'a>>::Data: Sync
[src]

impl<'a, L> Unpin for Scope<'a, L> where
    <L as LookupSpan<'a>>::Data: Unpin
[src]

impl<'a, L> UnwindSafe for Scope<'a, L> where
    L: RefUnwindSafe,
    <L as LookupSpan<'a>>::Data: RefUnwindSafe + UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.