Struct sentry_types::protocol::v7::TransactionMetadata
source · pub struct TransactionMetadata {
pub id: Uuid,
pub name: String,
pub trace_id: TraceId,
pub relative_start_ns: u64,
pub relative_end_ns: u64,
pub active_thread_id: u64,
}Expand description
Metadata about the transaction associated with the profile
Fields§
§id: UuidTransaction ID
name: StringTransaction Name
trace_id: TraceIdTrace ID
relative_start_ns: u64Transaction start timestamp in nanoseconds relative to the start of the profiler
relative_end_ns: u64Transaction end timestamp in nanoseconds relative to the start of the profiler
active_thread_id: u64ID of the thread in which the transaction started
Trait Implementations§
source§impl Clone for TransactionMetadata
impl Clone for TransactionMetadata
source§fn clone(&self) -> TransactionMetadata
fn clone(&self) -> TransactionMetadata
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TransactionMetadata
impl Debug for TransactionMetadata
source§impl<'de> Deserialize<'de> for TransactionMetadata
impl<'de> Deserialize<'de> for TransactionMetadata
source§fn 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
source§impl PartialEq<TransactionMetadata> for TransactionMetadata
impl PartialEq<TransactionMetadata> for TransactionMetadata
source§fn eq(&self, other: &TransactionMetadata) -> bool
fn eq(&self, other: &TransactionMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.