pub struct Envelope { /* private fields */ }Expand description
A Sentry Envelope.
An Envelope is the data format that Sentry uses for Ingestion. It can contain multiple Items, some of which are related, such as Events, and Event Attachments. Other Items, such as Sessions are independent.
See the documentation on Envelopes for more details.
Implementations§
Source§impl Envelope
impl Envelope
Sourcepub fn add_item<I>(&mut self, item: I)where
I: Into<EnvelopeItem>,
pub fn add_item<I>(&mut self, item: I)where
I: Into<EnvelopeItem>,
Add a new Envelope Item.
Sourcepub fn items(&self) -> EnvelopeItemIter<'_> ⓘ
pub fn items(&self) -> EnvelopeItemIter<'_> ⓘ
Create an Iterator over all the EnvelopeItems.
Trait Implementations§
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.
impl StructuralPartialEq for Envelope
Auto Trait Implementations§
impl Freeze for Envelope
impl RefUnwindSafe for Envelope
impl Send for Envelope
impl Sync for Envelope
impl Unpin for Envelope
impl UnwindSafe for Envelope
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