[][src]Struct google_dfareporting3d2::CreativeClickThroughUrl

pub struct CreativeClickThroughUrl {
    pub computed_click_through_url: Option<String>,
    pub custom_click_through_url: Option<String>,
    pub landing_page_id: Option<String>,
}

Click-through URL

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

Fields

computed_click_through_url: Option<String>

Read-only convenience field representing the actual URL that will be used for this click-through. The URL is computed as follows:

  • If landingPageId is specified then that landing page's URL is assigned to this field.
  • Otherwise, the customClickThroughUrl is assigned to this field.
custom_click_through_url: Option<String>

Custom click-through URL. Applicable if the landingPageId field is left unset.

landing_page_id: Option<String>

ID of the landing page for the click-through URL.

Trait Implementations

impl Part for CreativeClickThroughUrl[src]

impl Default for CreativeClickThroughUrl[src]

impl Clone for CreativeClickThroughUrl[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CreativeClickThroughUrl[src]

impl Serialize for CreativeClickThroughUrl[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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