Struct tarpc_trace::Context

source ·
pub struct Context {
    pub trace_id: TraceId,
    pub span_id: SpanId,
    pub parent_id: Option<SpanId>,
}
Expand description

A context for tracing the execution of processes, distributed or otherwise.

Consists of a span identifying an event, an optional parent span identifying a causal event that triggered the current span, and a trace with which all related spans are associated.

Fields

trace_id: TraceId

An identifier of the trace associated with the current context. A trace ID is typically created at a root span and passed along through all causal events.

span_id: SpanId

An identifier of the current span. In typical RPC usage, a span is created by a client before making an RPC, and the span ID is sent to the server. The server is free to create its own spans, for which it sets the client’s span as the parent span.

parent_id: Option<SpanId>

An identifier of the span that originated the current span. For example, if a server sends an RPC in response to a client request that included a span, the server would create a span for the RPC and set its parent to the span_id in the incoming request’s context.

If parent_id is None, then this is a root context.

Implementations

Constructs a new root context. A root context is one with no parent span.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.