🛈 Note: This is pre-release documentation for the upcoming tracing 0.2.0 ecosystem.

For the release documentation, please see docs.rs, instead.

tracing_mock::ancestry

Enum ExpectedAncestry

Source
pub enum ExpectedAncestry {
    HasExplicitParent(ExpectedSpan),
    IsExplicitRoot,
    HasContextualParent(ExpectedSpan),
    IsContextualRoot,
}
Expand description

The ancestry of an event or span.

An event or span can have an explicitly assigned parent, or be an explicit root. Otherwise, an event or span may have a contextually assigned parent or in the final case will be a contextual root.

Variants§

§

HasExplicitParent(ExpectedSpan)

The event or span has an explicitly assigned parent (created with parent: span_id) span.

§

IsExplicitRoot

The event or span is an explicitly defined root. It was created with parent: None and has no parent.

§

HasContextualParent(ExpectedSpan)

The event or span has a contextually assigned parent span. It has no explicitly assigned parent span, nor has it been explicitly defined as a root (it was created without the parent: directive). There was a span in context when this event or span was created.

§

IsContextualRoot

The event or span is a contextual root. It has no explicitly assigned parent, nor has it been explicitly defined as a root (it was created without the parent: directive). Additionally, no span was in context when this event or span was created.

Trait Implementations§

Source§

impl Debug for ExpectedAncestry

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for ExpectedAncestry

Source§

fn eq(&self, other: &ExpectedAncestry) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for ExpectedAncestry

Source§

impl StructuralPartialEq for ExpectedAncestry

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithCollector for T

Source§

fn with_collector<C>(self, collector: C) -> WithDispatch<Self>
where C: Into<Dispatch>,

Attaches the provided collector to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_collector(self) -> WithDispatch<Self>

Attaches the current default collector to this type, returning a WithDispatch wrapper. Read more