pub struct DirectorySiteSettings {
pub interstitial_placement_accepted: Option<bool>,
pub nielsen_ocr_opt_out: Option<bool>,
pub active_view_opt_out: Option<bool>,
pub video_active_view_opt_out: Option<bool>,
pub dfp_settings: Option<DfpSettings>,
pub verification_tag_opt_out: Option<bool>,
pub instream_video_placement_accepted: Option<bool>,
}Expand description
Directory Site Settings
This type is not used in any activity, and only used as part of another schema.
Fields§
§interstitial_placement_accepted: Option<bool>Whether this site accepts interstitial ads.
nielsen_ocr_opt_out: Option<bool>Whether this directory site has disabled Nielsen OCR reach ratings.
active_view_opt_out: Option<bool>Whether this directory site has disabled active view creatives.
video_active_view_opt_out: Option<bool>Whether this directory site has disabled active view for in-stream video creatives.
dfp_settings: Option<DfpSettings>Directory site DFP settings.
verification_tag_opt_out: Option<bool>Whether this directory site has disabled generation of Verification ins tags.
instream_video_placement_accepted: Option<bool>Whether this site accepts in-stream video ads.
Trait Implementations§
Source§impl Clone for DirectorySiteSettings
impl Clone for DirectorySiteSettings
Source§fn clone(&self) -> DirectorySiteSettings
fn clone(&self) -> DirectorySiteSettings
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 DirectorySiteSettings
impl Debug for DirectorySiteSettings
Source§impl Default for DirectorySiteSettings
impl Default for DirectorySiteSettings
Source§fn default() -> DirectorySiteSettings
fn default() -> DirectorySiteSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DirectorySiteSettings
impl<'de> Deserialize<'de> for DirectorySiteSettings
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 DirectorySiteSettings
impl Serialize for DirectorySiteSettings
impl Part for DirectorySiteSettings
Auto Trait Implementations§
impl Freeze for DirectorySiteSettings
impl RefUnwindSafe for DirectorySiteSettings
impl Send for DirectorySiteSettings
impl Sync for DirectorySiteSettings
impl Unpin for DirectorySiteSettings
impl UnwindSafe for DirectorySiteSettings
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