[][src]Struct google_dfareporting3d2::FrequencyCap

pub struct FrequencyCap {
    pub duration: Option<String>,
    pub impressions: Option<String>,
}

Frequency Cap.

This type is not used in any activity, and only used as part of another schema.

Fields

duration: Option<String>

Duration of time, in seconds, for this frequency cap. The maximum duration is 90 days. Acceptable values are 1 to 7776000, inclusive.

impressions: Option<String>

Number of times an individual user can be served the ad within the specified duration. Acceptable values are 1 to 15, inclusive.

Trait Implementations

impl Clone for FrequencyCap[src]

impl Debug for FrequencyCap[src]

impl Default for FrequencyCap[src]

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

impl Part for FrequencyCap[src]

impl Serialize for FrequencyCap[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.

impl<T> Typeable for T where
    T: Any