Enum sentry_core::protocol::EnvelopeItem
source · [−]#[non_exhaustive]
pub enum EnvelopeItem {
Event(Event<'static>),
SessionUpdate(SessionUpdate<'static>),
SessionAggregates(SessionAggregates<'static>),
Transaction(Transaction<'static>),
Attachment(Attachment),
}
Expand description
An Envelope Item.
See the documentation on Items for more details.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Event(Event<'static>)
An Event Item.
See the Event Item documentation for more details.
SessionUpdate(SessionUpdate<'static>)
A Session Item.
See the Session Item documentation for more details.
SessionAggregates(SessionAggregates<'static>)
A Session Aggregates Item.
See the Session Aggregates Item documentation for more details.
Transaction(Transaction<'static>)
A Transaction Item.
See the Transaction Item documentation for more details.
Attachment(Attachment)
An Attachment Item.
See the Attachment Item documentation for more details.
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for EnvelopeItem
impl Send for EnvelopeItem
impl Sync for EnvelopeItem
impl Unpin for EnvelopeItem
impl UnwindSafe for EnvelopeItem
Blanket Implementations
Mutably borrows from an owned value. Read more