Struct sentry_core::protocol::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: BTreeMap<String, String>,
    pub extra: BTreeMap<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, Global>,
    pub contexts: BTreeMap<String, Context>,
    pub request: Option<Request>,
}Expand description
Represents a tracing transaction.
Fields
event_id: UuidThe 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: BTreeMap<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: SystemTimeThe start time of the transaction.
spans: Vec<Span, Global>The collection of finished spans part of this transaction.
contexts: BTreeMap<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>
sourcefn default() -> Transaction<'a>
 
fn default() -> Transaction<'a>
Returns the “default value” for a type. Read more
sourceimpl<'de, 'a> Deserialize<'de> for Transaction<'a>
 
impl<'de, 'a> Deserialize<'de> for Transaction<'a>
sourcefn deserialize<__D>(
    __deserializer: __D
) -> Result<Transaction<'a>, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, 
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<Transaction<'a>, <__D as Deserializer<'de>>::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 Envelope
 
impl From<Transaction<'static>> for Envelope
sourcefn from(transaction: Transaction<'static>) -> Envelope
 
fn from(transaction: Transaction<'static>) -> Envelope
Converts to this type from the input type.
sourceimpl From<Transaction<'static>> for EnvelopeItem
 
impl From<Transaction<'static>> for EnvelopeItem
sourcefn from(transaction: Transaction<'static>) -> EnvelopeItem
 
fn from(transaction: Transaction<'static>) -> EnvelopeItem
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>
sourcefn serialize<__S>(
    &self, 
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
    __S: Serializer, 
 
fn serialize<__S>(
    &self, 
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
    __S: Serializer, 
Serialize this value into the given Serde serializer. Read more
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
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
