pub struct AdBlockingConfiguration {
pub click_through_url: Option<String>,
pub creative_bundle_id: Option<i64>,
pub enabled: Option<bool>,
pub override_click_through_url: Option<bool>,
}
Expand description
Campaign ad blocking settings.
This type is not used in any activity, and only used as part of another schema.
Fields§
§click_through_url: Option<String>
Click-through URL used by brand-neutral ads. This is a required field when overrideClickThroughUrl is set to true.
creative_bundle_id: Option<i64>
ID of a creative bundle to use for this campaign. If set, brand-neutral ads will select creatives from this bundle. Otherwise, a default transparent pixel will be used.
enabled: Option<bool>
Whether this campaign has enabled ad blocking. When true, ad blocking is enabled for placements in the campaign, but this may be overridden by site and placement settings. When false, ad blocking is disabled for all placements under the campaign, regardless of site and placement settings.
override_click_through_url: Option<bool>
Whether the brand-neutral ad’s click-through URL comes from the campaign’s creative bundle or the override URL. Must be set to true if ad blocking is enabled and no creative bundle is configured.
Trait Implementations§
Source§impl Clone for AdBlockingConfiguration
impl Clone for AdBlockingConfiguration
Source§fn clone(&self) -> AdBlockingConfiguration
fn clone(&self) -> AdBlockingConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for AdBlockingConfiguration
impl Debug for AdBlockingConfiguration
Source§impl Default for AdBlockingConfiguration
impl Default for AdBlockingConfiguration
Source§fn default() -> AdBlockingConfiguration
fn default() -> AdBlockingConfiguration
Source§impl<'de> Deserialize<'de> for AdBlockingConfiguration
impl<'de> Deserialize<'de> for AdBlockingConfiguration
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 AdBlockingConfiguration
impl Serialize for AdBlockingConfiguration
impl Part for AdBlockingConfiguration
Auto Trait Implementations§
impl Freeze for AdBlockingConfiguration
impl RefUnwindSafe for AdBlockingConfiguration
impl Send for AdBlockingConfiguration
impl Sync for AdBlockingConfiguration
impl Unpin for AdBlockingConfiguration
impl UnwindSafe for AdBlockingConfiguration
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