[][src]Struct google_displayvideo1::ActiveViewVideoViewabilityMetricConfig

pub struct ActiveViewVideoViewabilityMetricConfig {
    pub display_name: Option<String>,
    pub minimum_duration: Option<String>,
    pub minimum_quartile: Option<String>,
    pub minimum_viewability: Option<String>,
    pub minimum_volume: Option<String>,
}

Configuration for custom Active View video viewability metrics.

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

Fields

display_name: Option<String>

Required. The display name of the custom metric.

minimum_duration: Option<String>

The minimum visible video duration required (in seconds) in order for an impression to be recorded.

You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).

minimum_quartile: Option<String>

The minimum visible video duration required, based on the video quartiles, in order for an impression to be recorded.

You must specify minimum_duration, minimum_quartile or both. If both are specified, an impression meets the metric criteria if either requirement is met (whichever happens first).

minimum_viewability: Option<String>

Required. The minimum percentage of the video ad's pixels visible on the screen in order for an impression to be recorded.

minimum_volume: Option<String>

Required. The minimum percentage of the video ad's volume required in order for an impression to be recorded.

Trait Implementations

impl Clone for ActiveViewVideoViewabilityMetricConfig[src]

impl Debug for ActiveViewVideoViewabilityMetricConfig[src]

impl Default for ActiveViewVideoViewabilityMetricConfig[src]

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

impl Part for ActiveViewVideoViewabilityMetricConfig[src]

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