Struct google_analyticsreporting4::MetricFilterClause[][src]

pub struct MetricFilterClause {
    pub operator: Option<String>,
    pub filters: Option<Vec<MetricFilter>>,
}

Represents a group of metric 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 metric 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 MetricFilterClause
[src]

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

impl Clone for MetricFilterClause
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for MetricFilterClause
[src]

Formats the value using the given formatter. Read more

impl Part for MetricFilterClause
[src]

Auto Trait Implementations