Struct google_dfareporting3d4::api::PathReportDimensionValue[][src]

pub struct PathReportDimensionValue {
    pub dimension_name: Option<String>,
    pub ids: Option<Vec<String>>,
    pub kind: Option<String>,
    pub match_type: Option<String>,
    pub values: Option<Vec<String>>,
}

Represents a PathReportDimensionValue resource.

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

Fields

dimension_name: Option<String>

The name of the dimension.

ids: Option<Vec<String>>

The possible ID’s associated with the value if available.

kind: Option<String>

The kind of resource this is, in this case dfareporting#pathReportDimensionValue.

match_type: Option<String>

Determines how the ‘value’ field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, ‘’ is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (‘dfa:paidSearch’) allow a matchType other than EXACT.

values: Option<Vec<String>>

The possible values of the dimension.

Trait Implementations

impl Clone for PathReportDimensionValue[src]

impl Debug for PathReportDimensionValue[src]

impl Default for PathReportDimensionValue[src]

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

impl Part for PathReportDimensionValue[src]

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