[][src]Struct google_dfareporting2d8::ReportCriteria

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

The report criteria for a report of type "STANDARD".

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

Fields

activities: Option<Activities>

Activity group.

dimensions: Option<Vec<SortedDimension>>

The list of standard dimensions the report should include.

metric_names: Option<Vec<String>>

The list of names of metrics the report should include.

date_range: Option<DateRange>

The date range for which this report should be run.

custom_rich_media_events: Option<CustomRichMediaEvents>

Custom Rich Media Events group.

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.

Trait Implementations

impl Clone for ReportCriteria[src]

impl Debug for ReportCriteria[src]

impl Default for ReportCriteria[src]

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

impl NestedType for ReportCriteria[src]

impl Part for ReportCriteria[src]

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