Struct mick_jaeger::TracesIn

source ·
pub struct TracesIn { /* private fields */ }

Implementations§

source§

impl TracesIn

source

pub fn span( self: &Arc<Self>, trace_id: NonZeroU128, operation_name: impl Into<String>, ) -> Span

Builds a new Span.

Must be passed a trace_id that is used to group spans together. Its meaning is arbitrary.

source

pub fn span_with_id( self: &Arc<Self>, trace_id: NonZeroU128, span_id: NonZeroU64, operation_name: impl Into<String>, ) -> Span

Builds a new Span, using a specific span ID.

Use this method when it is required to know the ID of a span, for example when building links between spans across different services.

source

pub fn span_with_parent( self: &Arc<Self>, trace_id: NonZeroU128, parent_id: Option<NonZeroU64>, operation_name: impl Into<String>, ) -> Span

Builds a new Span, whose parent uses a specific span ID.

A parent_id equal to 0 means “no parent”.

source

pub fn span_with_id_and_parent( self: &Arc<Self>, trace_id: NonZeroU128, span_id: NonZeroU64, parent_id: Option<NonZeroU64>, operation_name: impl Into<String>, ) -> Span

Builds a new Span, with a specific ID whose parent uses a specific span ID.

A parent_id equal to 0 means “no parent”.

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, 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>,

§

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>,

§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V