pub struct SiteSettings {
pub disable_brand_safe_ads: Option<bool>,
pub creative_settings: Option<CreativeSettings>,
pub active_view_opt_out: Option<bool>,
pub lookback_configuration: Option<LookbackConfiguration>,
pub disable_new_cookie: Option<bool>,
pub tag_setting: Option<TagSetting>,
}Expand description
Site Settings
This type is not used in any activity, and only used as part of another schema.
Fields§
§disable_brand_safe_ads: Option<bool>Whether brand safe ads are disabled for this site.
creative_settings: Option<CreativeSettings>Site-wide creative settings.
active_view_opt_out: Option<bool>Whether active view creatives are disabled for this site.
lookback_configuration: Option<LookbackConfiguration>Lookback window settings for this site.
Whether new cookies are disabled for this site.
tag_setting: Option<TagSetting>Configuration settings for dynamic and image floodlight tags.
Trait Implementations§
Source§impl Clone for SiteSettings
impl Clone for SiteSettings
Source§fn clone(&self) -> SiteSettings
fn clone(&self) -> SiteSettings
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 SiteSettings
impl Debug for SiteSettings
Source§impl Default for SiteSettings
impl Default for SiteSettings
Source§fn default() -> SiteSettings
fn default() -> SiteSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SiteSettings
impl<'de> Deserialize<'de> for SiteSettings
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 SiteSettings
impl Serialize for SiteSettings
impl Part for SiteSettings
Auto Trait Implementations§
impl Freeze for SiteSettings
impl RefUnwindSafe for SiteSettings
impl Send for SiteSettings
impl Sync for SiteSettings
impl Unpin for SiteSettings
impl UnwindSafe for SiteSettings
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