pub enum EventTrackingMethod {
Img,
Js,
ExchangeSpecific(i32),
}Expand description
7.7 Event Tracking Methods Table
Variants§
Img
Image-pixel tracking - URL provided will be inserted as a 1x1 pixel at the time of the event.
Js
Javascript-based tracking - URL provided will be inserted as a js tag at the time of the event.
ExchangeSpecific(i32)
Could include custom measurement companies such as moat, doubleverify, IAS, etc - in this case additional elements will often be passed
Trait Implementations§
Source§impl Clone for EventTrackingMethod
impl Clone for EventTrackingMethod
Source§fn clone(&self) -> EventTrackingMethod
fn clone(&self) -> EventTrackingMethod
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 EventTrackingMethod
impl Debug for EventTrackingMethod
Source§impl<'de> Deserialize<'de> for EventTrackingMethod
impl<'de> Deserialize<'de> for EventTrackingMethod
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EventTrackingMethod
impl PartialEq for EventTrackingMethod
Source§impl Serialize for EventTrackingMethod
impl Serialize for EventTrackingMethod
impl Copy for EventTrackingMethod
impl Eq for EventTrackingMethod
impl StructuralPartialEq for EventTrackingMethod
Auto Trait Implementations§
impl Freeze for EventTrackingMethod
impl RefUnwindSafe for EventTrackingMethod
impl Send for EventTrackingMethod
impl Sync for EventTrackingMethod
impl Unpin for EventTrackingMethod
impl UnwindSafe for EventTrackingMethod
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