Struct sentry_types::protocol::v7::Transaction
source · [−]pub struct Transaction<'a> {Show 13 fields
pub event_id: Uuid,
pub name: Option<String>,
pub release: Option<Cow<'a, str>>,
pub environment: Option<Cow<'a, str>>,
pub tags: Map<String, String>,
pub extra: Map<String, Value>,
pub sdk: Option<Cow<'a, ClientSdkInfo>>,
pub platform: Cow<'a, str>,
pub timestamp: Option<SystemTime>,
pub start_timestamp: SystemTime,
pub spans: Vec<Span>,
pub contexts: Map<String, Context>,
pub request: Option<Request>,
}
Expand description
Represents a tracing transaction.
Fields
event_id: Uuid
The ID of the event
name: Option<String>
The transaction name.
release: Option<Cow<'a, str>>
A release identifier.
environment: Option<Cow<'a, str>>
An optional environment identifier.
Optional tags to be attached to the event.
extra: Map<String, Value>
Optional extra information to be sent with the event.
sdk: Option<Cow<'a, ClientSdkInfo>>
SDK metadata
platform: Cow<'a, str>
A platform identifier for this event.
timestamp: Option<SystemTime>
The end time of the transaction.
start_timestamp: SystemTime
The start time of the transaction.
spans: Vec<Span>
The collection of finished spans part of this transaction.
contexts: Map<String, Context>
Optional contexts.
request: Option<Request>
Optionally HTTP request data to be sent along.
Implementations
sourceimpl<'a> Transaction<'a>
impl<'a> Transaction<'a>
sourcepub fn new() -> Transaction<'a>
pub fn new() -> Transaction<'a>
Creates a new span transaction the current timestamp and random id.
sourcepub fn into_owned(self) -> Transaction<'static>
pub fn into_owned(self) -> Transaction<'static>
Creates a fully owned version of the transaction.
Trait Implementations
sourceimpl<'a> Clone for Transaction<'a>
impl<'a> Clone for Transaction<'a>
sourcefn clone(&self) -> Transaction<'a>
fn clone(&self) -> Transaction<'a>
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<'a> Debug for Transaction<'a>
impl<'a> Debug for Transaction<'a>
sourceimpl<'a> Default for Transaction<'a>
impl<'a> Default for Transaction<'a>
sourceimpl<'de, 'a> Deserialize<'de> for Transaction<'a>
impl<'de, 'a> Deserialize<'de> for Transaction<'a>
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<'a> Display for Transaction<'a>
impl<'a> Display for Transaction<'a>
sourceimpl From<Transaction<'static>> for EnvelopeItem
impl From<Transaction<'static>> for EnvelopeItem
sourcefn from(transaction: Transaction<'static>) -> Self
fn from(transaction: Transaction<'static>) -> Self
Converts to this type from the input type.
sourceimpl From<Transaction<'static>> for Envelope
impl From<Transaction<'static>> for Envelope
sourcefn from(transaction: Transaction<'static>) -> Self
fn from(transaction: Transaction<'static>) -> Self
Converts to this type from the input type.
sourceimpl<'a> PartialEq<Transaction<'a>> for Transaction<'a>
impl<'a> PartialEq<Transaction<'a>> for Transaction<'a>
sourcefn eq(&self, other: &Transaction<'a>) -> bool
fn eq(&self, other: &Transaction<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Transaction<'a>) -> bool
fn ne(&self, other: &Transaction<'a>) -> bool
This method tests for !=
.
sourceimpl<'a> Serialize for Transaction<'a>
impl<'a> Serialize for Transaction<'a>
impl<'a> StructuralPartialEq for Transaction<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Transaction<'a>
impl<'a> Send for Transaction<'a>
impl<'a> Sync for Transaction<'a>
impl<'a> Unpin for Transaction<'a>
impl<'a> UnwindSafe for Transaction<'a>
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