Enum sentry::TransactionOrSpan
source · pub enum TransactionOrSpan {
Transaction(Transaction),
Span(Span),
}
Expand description
A wrapper that groups a Transaction
and a Span
together.
Variants§
Implementations§
source§impl TransactionOrSpan
impl TransactionOrSpan
sourcepub fn set_data(&self, key: &str, value: Value)
pub fn set_data(&self, key: &str, value: Value)
Set some extra information to be sent with this Transaction/Span.
sourcepub fn get_status(&self) -> Option<SpanStatus>
pub fn get_status(&self) -> Option<SpanStatus>
Set the status of the Transaction/Span.
sourcepub fn set_status(&self, status: SpanStatus)
pub fn set_status(&self, status: SpanStatus)
Set the status of the Transaction/Span.
sourcepub fn set_request(&self, request: Request)
pub fn set_request(&self, request: Request)
Set the HTTP request information for this Transaction/Span.
sourcepub fn iter_headers(&self) -> TraceHeadersIter ⓘ
pub fn iter_headers(&self) -> TraceHeadersIter ⓘ
Returns the headers needed for distributed tracing.
sourcepub fn start_child(&self, op: &str, description: &str) -> Span
pub fn start_child(&self, op: &str, description: &str) -> Span
Starts a new child Span with the given op
and description
.
The span must be explicitly finished via Span::finish
, as it will
otherwise not be sent to Sentry.
sourcepub fn finish(self)
pub fn finish(self)
Finishes the Transaction/Span.
This records the end timestamp and either sends the inner Transaction
directly to Sentry, or adds the Span
to its transaction.
Trait Implementations§
source§impl Clone for TransactionOrSpan
impl Clone for TransactionOrSpan
source§fn clone(&self) -> TransactionOrSpan
fn clone(&self) -> TransactionOrSpan
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 TransactionOrSpan
impl Debug for TransactionOrSpan
source§impl From<Span> for TransactionOrSpan
impl From<Span> for TransactionOrSpan
source§fn from(span: Span) -> TransactionOrSpan
fn from(span: Span) -> TransactionOrSpan
Converts to this type from the input type.
source§impl From<Transaction> for TransactionOrSpan
impl From<Transaction> for TransactionOrSpan
source§fn from(transaction: Transaction) -> TransactionOrSpan
fn from(transaction: Transaction) -> TransactionOrSpan
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionOrSpan
impl RefUnwindSafe for TransactionOrSpan
impl Send for TransactionOrSpan
impl Sync for TransactionOrSpan
impl Unpin for TransactionOrSpan
impl UnwindSafe for TransactionOrSpan
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)