[][src]Struct tracing_subscriber::registry::Data

pub struct Data<'a> { /* fields omitted */ }
This is supported on feature="registry" only.

Span data stored in a Registry.

The registry stores well-known data defined by tracing: span relationships, metadata and reference counts. Additional user-defined data provided by Layers, such as formatted fields, metrics, or distributed traces should be stored in the extensions typemap.

Trait Implementations

impl<'a> Debug for Data<'a>[src]

impl<'a> SpanData<'a> for Data<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Data<'a>

impl<'a> !Send for Data<'a>

impl<'a> !Sync for Data<'a>

impl<'a> Unpin for Data<'a>

impl<'a> !UnwindSafe for Data<'a>

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.