pub struct SegmentFilter {
pub not: Option<bool>,
pub sequence_segment: Option<SequenceSegment>,
pub simple_segment: Option<SimpleSegment>,
}
Expand description
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” }] },
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.
simple_segment: Option<SimpleSegment>
A Simple segment conditions consist of one or more dimension/metric conditions that can be combined
Trait Implementations§
Source§impl Clone for SegmentFilter
impl Clone for SegmentFilter
Source§fn clone(&self) -> SegmentFilter
fn clone(&self) -> SegmentFilter
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SegmentFilter
impl Debug for SegmentFilter
Source§impl Default for SegmentFilter
impl Default for SegmentFilter
Source§fn default() -> SegmentFilter
fn default() -> SegmentFilter
Source§impl<'de> Deserialize<'de> for SegmentFilter
impl<'de> Deserialize<'de> for SegmentFilter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for SegmentFilter
impl Serialize for SegmentFilter
impl Part for SegmentFilter
Auto Trait Implementations§
impl Freeze for SegmentFilter
impl RefUnwindSafe for SegmentFilter
impl Send for SegmentFilter
impl Sync for SegmentFilter
impl Unpin for SegmentFilter
impl UnwindSafe for SegmentFilter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more