pub struct Transaction<'a> {Show 14 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>,
pub contexts: BTreeMap<String, Context>,
pub request: Option<Request>,
pub active_thread_id: Option<u64>,
}
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: 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: SystemTime
The start time of the transaction.
spans: Vec<Span>
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.
active_thread_id: Option<u64>
ID of the thread where the transaction was started
Implementations§
Source§impl<'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§
Source§impl<'a> Clone for Transaction<'a>
impl<'a> Clone for Transaction<'a>
Source§fn clone(&self) -> Transaction<'a>
fn clone(&self) -> Transaction<'a>
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<'a> Debug for Transaction<'a>
impl<'a> Debug for Transaction<'a>
Source§impl<'a> Default for Transaction<'a>
impl<'a> Default for Transaction<'a>
Source§fn default() -> Transaction<'a>
fn default() -> Transaction<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for Transaction<'a>
impl<'de, 'a> Deserialize<'de> for Transaction<'a>
Source§fn 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
Source§impl<'a> Display for Transaction<'a>
impl<'a> Display for Transaction<'a>
Source§impl From<Transaction<'static>> for Envelope
impl From<Transaction<'static>> for Envelope
Source§fn from(transaction: Transaction<'static>) -> Envelope
fn from(transaction: Transaction<'static>) -> Envelope
Converts to this type from the input type.
Source§impl From<Transaction<'static>> for EnvelopeItem
impl From<Transaction<'static>> for EnvelopeItem
Source§fn from(transaction: Transaction<'static>) -> EnvelopeItem
fn from(transaction: Transaction<'static>) -> EnvelopeItem
Converts to this type from the input type.
Source§impl<'a> PartialEq for Transaction<'a>
impl<'a> PartialEq for Transaction<'a>
Source§impl<'a> Serialize for Transaction<'a>
impl<'a> Serialize for Transaction<'a>
Source§fn 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> Freeze for Transaction<'a>
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)