Struct google_doubleclickbidmanager1::api::Parameters[][src]

pub struct Parameters {
    pub filters: Option<Vec<FilterPair>>,
    pub group_bys: Option<Vec<String>>,
    pub include_invite_data: Option<bool>,
    pub metrics: Option<Vec<String>>,
    pub type_: Option<String>,
}

Parameters of a query or report.

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

Fields

filters: Option<Vec<FilterPair>>

Filters used to match traffic data in your report.

group_bys: Option<Vec<String>>

Data is grouped by the filters listed in this field.

include_invite_data: Option<bool>

Deprecated. This field is no longer in use.

metrics: Option<Vec<String>>

Metrics to include as columns in your report.

type_: Option<String>

Report type.

Trait Implementations

impl Clone for Parameters[src]

impl Debug for Parameters[src]

impl Default for Parameters[src]

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

impl Part for Parameters[src]

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