[][src]Enum openrtb_native1::EventTrackingMethod

pub enum EventTrackingMethod {
    Img,
    Js,
    ExchangeSpecific(i32),
}

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

impl Clone for EventTrackingMethod[src]

impl Copy for EventTrackingMethod[src]

impl Debug for EventTrackingMethod[src]

impl<'de> Deserialize<'de> for EventTrackingMethod[src]

impl Eq for EventTrackingMethod[src]

impl PartialEq<EventTrackingMethod> for EventTrackingMethod[src]

impl Serialize for EventTrackingMethod[src]

impl StructuralEq for EventTrackingMethod[src]

impl StructuralPartialEq for EventTrackingMethod[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.