[][src]Struct google_dfareporting3d2::TagSetting

pub struct TagSetting {
    pub include_click_through_urls: Option<bool>,
    pub include_click_tracking: Option<bool>,
    pub additional_key_values: Option<String>,
    pub keyword_option: Option<String>,
}

Tag Settings

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

Fields

include_click_through_urls: Option<bool>

Whether static landing page URLs should be included in the tags. This setting applies only to placements.

include_click_tracking: Option<bool>

Whether click-tracking string should be included in the tags.

additional_key_values: Option<String>

Additional key-values to be included in tags. Each key-value pair must be of the form key=value, and pairs must be separated by a semicolon (;). Keys and values must not contain commas. For example, id=2;color=red is a valid value for this field.

keyword_option: Option<String>

Option specifying how keywords are embedded in ad tags. This setting can be used to specify whether keyword placeholders are inserted in placement tags for this site. Publishers can then add keywords to those placeholders.

Trait Implementations

impl Clone for TagSetting[src]

impl Debug for TagSetting[src]

impl Default for TagSetting[src]

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

impl Part for TagSetting[src]

impl Serialize for TagSetting[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