[][src]Struct google_analyticsreporting4::DimensionFilter

pub struct DimensionFilter {
    pub dimension_name: Option<String>,
    pub case_sensitive: Option<bool>,
    pub expressions: Option<Vec<String>>,
    pub not: Option<bool>,
    pub operator: Option<String>,
}

Dimension filter specifies the filtering options on a dimension.

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

Fields

dimension_name: Option<String>

The dimension to filter on. A DimensionFilter must contain a dimension.

case_sensitive: Option<bool>

Should the match be case sensitive? Default is false.

expressions: Option<Vec<String>>

Strings or regular expression to match against. Only the first value of the list is used for comparison unless the operator is IN_LIST. If IN_LIST operator, then the entire list is used to filter the dimensions as explained in the description of the IN_LIST operator.

not: Option<bool>

Logical NOT operator. If this boolean is set to true, then the matching dimension values will be excluded in the report. The default is false.

operator: Option<String>

How to match the dimension to the expression. The default is REGEXP.

Trait Implementations

impl Clone for DimensionFilter[src]

impl Debug for DimensionFilter[src]

impl Default for DimensionFilter[src]

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

impl Part for DimensionFilter[src]

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