pub struct LookbackConfiguration {
pub click_duration: Option<i32>,
pub post_impression_activities_duration: Option<i32>,
}
Expand description
Lookback configuration settings.
This type is not used in any activity, and only used as part of another schema.
Fields§
§click_duration: Option<i32>
Lookback window, in days, from the last time a given user clicked on one of your ads. If you enter 0, clicks will not be considered as triggering events for floodlight tracking. If you leave this field blank, the default value for your account will be used. Acceptable values are 0 to 90, inclusive.
post_impression_activities_duration: Option<i32>
Lookback window, in days, from the last time a given user viewed one of your ads. If you enter 0, impressions will not be considered as triggering events for floodlight tracking. If you leave this field blank, the default value for your account will be used. Acceptable values are 0 to 90, inclusive.
Trait Implementations§
Source§impl Clone for LookbackConfiguration
impl Clone for LookbackConfiguration
Source§fn clone(&self) -> LookbackConfiguration
fn clone(&self) -> LookbackConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LookbackConfiguration
impl Debug for LookbackConfiguration
Source§impl Default for LookbackConfiguration
impl Default for LookbackConfiguration
Source§fn default() -> LookbackConfiguration
fn default() -> LookbackConfiguration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LookbackConfiguration
impl<'de> Deserialize<'de> for LookbackConfiguration
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for LookbackConfiguration
impl Serialize for LookbackConfiguration
impl Part for LookbackConfiguration
Auto Trait Implementations§
impl Freeze for LookbackConfiguration
impl RefUnwindSafe for LookbackConfiguration
impl Send for LookbackConfiguration
impl Sync for LookbackConfiguration
impl Unpin for LookbackConfiguration
impl UnwindSafe for LookbackConfiguration
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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