[][src]Struct openrtb_native1::response::Link

pub struct Link<'a> {
    pub url: Cow<'a, str>,
    pub clicktrackers: Option<Vec<Cow<'a, str>>>,
    pub fallback: Option<Cow<'a, str>>,
    pub ext: Option<Object<'a>>,
}

5.7 Link Response Object

Used for ‘call to action’ assets, or other links from the Native ad. This Object should be associated to its peer object in the parent Asset Object or as the master link in the top level Native Ad response object. When that peer object is activated (clicked) the action should take the user to the location of the link.

Fields

url: Cow<'a, str>

required; string; - Landing URL of the clickable link.

clicktrackers: Option<Vec<Cow<'a, str>>>

optional; array of string; - List of third-party tracker URLs to be fired on click of the URL.

fallback: Option<Cow<'a, str>>

optional; string(URL); - Fallback URL for deeplink. To be used if the URL given in url is not supported by the device.

ext: Option<Object<'a>>

optional; object; - This object is a placeholder that may contain custom JSON agreed to by the parties to support flexibility beyond the standard defined in this specification.

Trait Implementations

impl<'a> Clone for Link<'a>[src]

impl<'a> Debug for Link<'a>[src]

impl<'a> Default for Link<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Link<'a>[src]

impl<'a> PartialEq<Link<'a>> for Link<'a>[src]

impl<'a> Serialize for Link<'a>[src]

impl<'a> StructuralPartialEq for Link<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Link<'a>

impl<'a> Send for Link<'a>

impl<'a> Sync for Link<'a>

impl<'a> Unpin for Link<'a>

impl<'a> UnwindSafe for Link<'a>

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> DefaultExt for T where
    T: Default + PartialEq<T>, 
[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.