pub struct IncludeConditions {
pub days_to_look_back: Option<i32>,
pub is_smart_list: Option<bool>,
pub kind: Option<String>,
pub membership_duration_days: Option<i32>,
pub segment: Option<String>,
}
Expand description
JSON template for an Analytics Remarketing Include Conditions.
This type is not used in any activity, and only used as part of another schema.
Fields§
§days_to_look_back: Option<i32>
The look-back window lets you specify a time frame for evaluating the behavior that qualifies users for your audience. For example, if your filters include users from Central Asia, and Transactions Greater than 2, and you set the look-back window to 14 days, then any user from Central Asia whose cumulative transactions exceed 2 during the last 14 days is added to the audience.
is_smart_list: Option<bool>
Boolean indicating whether this segment is a smart list. https://support.google.com/analytics/answer/4628577
kind: Option<String>
Resource type for include conditions.
membership_duration_days: Option<i32>
Number of days (in the range 1 to 540) a user remains in the audience.
segment: Option<String>
The segment condition that will cause a user to be added to an audience.
Trait Implementations§
Source§impl Clone for IncludeConditions
impl Clone for IncludeConditions
Source§fn clone(&self) -> IncludeConditions
fn clone(&self) -> IncludeConditions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for IncludeConditions
impl Debug for IncludeConditions
Source§impl Default for IncludeConditions
impl Default for IncludeConditions
Source§fn default() -> IncludeConditions
fn default() -> IncludeConditions
Source§impl<'de> Deserialize<'de> for IncludeConditions
impl<'de> Deserialize<'de> for IncludeConditions
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 IncludeConditions
impl Serialize for IncludeConditions
impl Part for IncludeConditions
Auto Trait Implementations§
impl Freeze for IncludeConditions
impl RefUnwindSafe for IncludeConditions
impl Send for IncludeConditions
impl Sync for IncludeConditions
impl Unpin for IncludeConditions
impl UnwindSafe for IncludeConditions
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