[][src]Struct google_analyticsreporting4::SegmentFilter

pub struct SegmentFilter {
    pub not: Option<bool>,
    pub simple_segment: Option<SimpleSegment>,
    pub sequence_segment: Option<SequenceSegment>,
}

SegmentFilter defines the segment to be either a simple or a sequence segment. A simple segment condition contains dimension and metric conditions to select the sessions or users. A sequence segment condition can be used to select users or sessions based on sequential conditions.

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

Fields

not: Option<bool>

If true, match the complement of simple or sequence segment. For example, to match all visits not from "New York", we can define the segment as follows:

  "sessionSegment": {
    "segmentFilters": [{
      "simpleSegment" :{
        "orFiltersForSegment": [{
          "segmentFilterClauses":[{
            "dimensionFilter": {
              "dimensionName": "ga:city",
              "expressions": ["New York"]
            }
          }]
        }]
      },
      "not": "True"
    }]
  },````
simple_segment: Option<SimpleSegment>

A Simple segment conditions consist of one or more dimension/metric conditions that can be combined

sequence_segment: Option<SequenceSegment>

Sequence conditions consist of one or more steps, where each step is defined by one or more dimension/metric conditions. Multiple steps can be combined with special sequence operators.

Trait Implementations

impl Clone for SegmentFilter[src]

impl Debug for SegmentFilter[src]

impl Default for SegmentFilter[src]

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

impl Part for SegmentFilter[src]

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