Struct google_analyticsreporting4::DimensionFilterClause[][src]

pub struct DimensionFilterClause {
    pub operator: Option<String>,
    pub filters: Option<Vec<DimensionFilter>>,
}

A group of dimension filters. Set the operator value to specify how the filters are logically combined.

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

Fields

The operator for combining multiple dimension filters. If unspecified, it is treated as an OR.

The repeated set of filters. They are logically combined based on the operator specified.

Trait Implementations

impl Default for DimensionFilterClause
[src]

Returns the "default value" for a type. Read more

impl Clone for DimensionFilterClause
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DimensionFilterClause
[src]

Formats the value using the given formatter. Read more

impl Part for DimensionFilterClause
[src]

Auto Trait Implementations