[][src]Struct google_analyticsreporting4::SegmentDimensionFilter

pub struct SegmentDimensionFilter {
    pub dimension_name: Option<String>,
    pub case_sensitive: Option<bool>,
    pub min_comparison_value: Option<String>,
    pub operator: Option<String>,
    pub expressions: Option<Vec<String>>,
    pub max_comparison_value: 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>

Name of the dimension for which the filter is being applied.

case_sensitive: Option<bool>

Should the match be case sensitive, ignored for IN_LIST operator.

min_comparison_value: Option<String>

Minimum comparison values for BETWEEN match type.

operator: Option<String>

The operator to use to match the dimension with the expressions.

expressions: Option<Vec<String>>

The list of expressions, only the first element is used for all operators

max_comparison_value: Option<String>

Maximum comparison values for BETWEEN match type.

Trait Implementations

impl Clone for SegmentDimensionFilter[src]

impl Debug for SegmentDimensionFilter[src]

impl Default for SegmentDimensionFilter[src]

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

impl Part for SegmentDimensionFilter[src]

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