[][src]Struct google_displayvideo1::AdvertiserSdfConfig

pub struct AdvertiserSdfConfig {
    pub override_partner_sdf_config: Option<bool>,
    pub sdf_config: Option<SdfConfig>,
}

Structured Data Files (SDF) settings of an advertiser.

This type is not used in any activity, and only used as part of another schema.

Fields

override_partner_sdf_config: Option<bool>

Whether or not this advertiser overrides the SDF configuration of its parent partner.

By default, an advertiser inherits the SDF configuration from the parent partner. To override the partner configuration, set this field to true and provide the new configuration in sdfConfig.

sdf_config: Option<SdfConfig>

The SDF configuration for the advertiser.

  • Required when overridePartnerSdfConfig is true.
  • Output only when overridePartnerSdfConfig is false.

Trait Implementations

impl Clone for AdvertiserSdfConfig[src]

impl Debug for AdvertiserSdfConfig[src]

impl Default for AdvertiserSdfConfig[src]

impl<'de> Deserialize<'de> for AdvertiserSdfConfig[src]

impl Part for AdvertiserSdfConfig[src]

impl Serialize for AdvertiserSdfConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any