Struct google_analyticsreporting4::SegmentFilterClause[][src]

pub struct SegmentFilterClause {
    pub not: Option<bool>,
    pub dimension_filter: Option<SegmentDimensionFilter>,
    pub metric_filter: Option<SegmentMetricFilter>,
}

Filter Clause to be used in a segment definition, can be wither a metric or a dimension filter.

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

Fields

Matches the complement (!) of the filter.

Dimension Filter for the segment definition.

Metric Filter for the segment definition.

Trait Implementations

impl Default for SegmentFilterClause
[src]

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

impl Clone for SegmentFilterClause
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SegmentFilterClause
[src]

Formats the value using the given formatter. Read more

impl Part for SegmentFilterClause
[src]

Auto Trait Implementations