pub enum TrackerEvent {
Custom(CustomEventData),
Identify(IdentifyEventData),
Stage(StageEventData),
Billing(BillingEventData),
}Expand description
All event types.
Variants§
Custom(CustomEventData)
Identify(IdentifyEventData)
Stage(StageEventData)
Billing(BillingEventData)
Trait Implementations§
Source§impl Clone for TrackerEvent
impl Clone for TrackerEvent
Source§fn clone(&self) -> TrackerEvent
fn clone(&self) -> TrackerEvent
Returns a duplicate 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 TrackerEvent
impl Debug for TrackerEvent
Auto Trait Implementations§
impl Freeze for TrackerEvent
impl RefUnwindSafe for TrackerEvent
impl Send for TrackerEvent
impl Sync for TrackerEvent
impl Unpin for TrackerEvent
impl UnwindSafe for TrackerEvent
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