#[non_exhaustive]pub enum EnvelopeItem {
Event(Event<'static>),
SessionUpdate(SessionUpdate<'static>),
SessionAggregates(SessionAggregates<'static>),
Transaction(Transaction<'static>),
Attachment(Attachment),
Profile(SampleProfile),
}
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.
Profile(SampleProfile)
An Profile Item.
Trait Implementations§
Source§impl Clone for EnvelopeItem
impl Clone for EnvelopeItem
Source§fn clone(&self) -> EnvelopeItem
fn clone(&self) -> EnvelopeItem
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 EnvelopeItem
impl Debug for EnvelopeItem
Source§impl From<Attachment> for EnvelopeItem
impl From<Attachment> for EnvelopeItem
Source§fn from(attachment: Attachment) -> EnvelopeItem
fn from(attachment: Attachment) -> EnvelopeItem
Converts to this type from the input type.
Source§impl From<Event<'static>> for EnvelopeItem
impl From<Event<'static>> for EnvelopeItem
Source§fn from(event: Event<'static>) -> EnvelopeItem
fn from(event: Event<'static>) -> EnvelopeItem
Converts to this type from the input type.
Source§impl From<SampleProfile> for EnvelopeItem
impl From<SampleProfile> for EnvelopeItem
Source§fn from(profile: SampleProfile) -> EnvelopeItem
fn from(profile: SampleProfile) -> EnvelopeItem
Converts to this type from the input type.
Source§impl From<SessionAggregates<'static>> for EnvelopeItem
impl From<SessionAggregates<'static>> for EnvelopeItem
Source§fn from(aggregates: SessionAggregates<'static>) -> EnvelopeItem
fn from(aggregates: SessionAggregates<'static>) -> EnvelopeItem
Converts to this type from the input type.
Source§impl From<SessionUpdate<'static>> for EnvelopeItem
impl From<SessionUpdate<'static>> for EnvelopeItem
Source§fn from(session: SessionUpdate<'static>) -> EnvelopeItem
fn from(session: SessionUpdate<'static>) -> EnvelopeItem
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 PartialEq for EnvelopeItem
impl PartialEq for EnvelopeItem
impl StructuralPartialEq for EnvelopeItem
Auto Trait Implementations§
impl Freeze for EnvelopeItem
impl RefUnwindSafe for EnvelopeItem
impl Send for EnvelopeItem
impl Sync for EnvelopeItem
impl Unpin for EnvelopeItem
impl UnwindSafe for EnvelopeItem
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
)