Struct sentry_types::protocol::v7::TraceContext
source · [−]pub struct TraceContext {
pub span_id: SpanId,
pub trace_id: TraceId,
pub parent_span_id: Option<SpanId>,
pub op: Option<String>,
pub description: Option<String>,
pub status: Option<SpanStatus>,
}
Expand description
Holds information about a tracing event.
Fields
span_id: SpanId
The ID of the trace event
trace_id: TraceId
Determines which trace the transaction belongs to.
parent_span_id: Option<SpanId>
Determines the parent of this transaction if any.
op: Option<String>
Short code identifying the type of operation the transaction is measuring.
description: Option<String>
Human readable detail description.
status: Option<SpanStatus>
Describes the status of the span (e.g. ok
, cancelled
, etc.)
Trait Implementations
sourceimpl Clone for TraceContext
impl Clone for TraceContext
sourcefn clone(&self) -> TraceContext
fn clone(&self) -> TraceContext
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TraceContext
impl Debug for TraceContext
sourceimpl Default for TraceContext
impl Default for TraceContext
sourcefn default() -> TraceContext
fn default() -> TraceContext
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for TraceContext
impl<'de> Deserialize<'de> for TraceContext
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<TraceContext> for Context
impl From<TraceContext> for Context
sourcefn from(data: TraceContext) -> Self
fn from(data: TraceContext) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<TraceContext> for TraceContext
impl PartialEq<TraceContext> for TraceContext
sourcefn eq(&self, other: &TraceContext) -> bool
fn eq(&self, other: &TraceContext) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TraceContext) -> bool
fn ne(&self, other: &TraceContext) -> bool
This method tests for !=
.
sourceimpl Serialize for TraceContext
impl Serialize for TraceContext
impl StructuralPartialEq for TraceContext
Auto Trait Implementations
impl RefUnwindSafe for TraceContext
impl Send for TraceContext
impl Sync for TraceContext
impl Unpin for TraceContext
impl UnwindSafe for TraceContext
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more