Struct google_dfareporting3d2::api::ReportReachCriteria[][src]

pub struct ReportReachCriteria {
    pub activities: Option<Activities>,
    pub custom_rich_media_events: Option<CustomRichMediaEvents>,
    pub date_range: Option<DateRange>,
    pub dimension_filters: Option<Vec<DimensionValue>>,
    pub dimensions: Option<Vec<SortedDimension>>,
    pub enable_all_dimension_combinations: Option<bool>,
    pub metric_names: Option<Vec<String>>,
    pub reach_by_frequency_metric_names: Option<Vec<String>>,
}

The report criteria for a report of type “REACH”.

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

Fields

activities: Option<Activities>

Activity group.

custom_rich_media_events: Option<CustomRichMediaEvents>

Custom Rich Media Events group.

date_range: Option<DateRange>

The date range this report should be run for.

dimension_filters: Option<Vec<DimensionValue>>

The list of filters on which dimensions are filtered. Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.

dimensions: Option<Vec<SortedDimension>>

The list of dimensions the report should include.

enable_all_dimension_combinations: Option<bool>

Whether to enable all reach dimension combinations in the report. Defaults to false. If enabled, the date range of the report should be within the last 42 days.

metric_names: Option<Vec<String>>

The list of names of metrics the report should include.

reach_by_frequency_metric_names: Option<Vec<String>>

The list of names of Reach By Frequency metrics the report should include.

Trait Implementations

impl Clone for ReportReachCriteria[src]

impl Debug for ReportReachCriteria[src]

impl Default for ReportReachCriteria[src]

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

impl NestedType for ReportReachCriteria[src]

impl Part for ReportReachCriteria[src]

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