pub struct ClickTag {
pub event_name: Option<String>,
pub name: Option<String>,
pub value: Option<String>,
}Expand description
Creative Click Tag.
This type is not used in any activity, and only used as part of another schema.
Fields§
§event_name: Option<String>Advertiser event name associated with the click tag. This field is used by ENHANCED_IMAGE, and HTML5_BANNER creatives. Applicable to ENHANCED_BANNER when the primary asset type is not HTML_IMAGE
name: Option<String>Parameter name for the specified click tag. For ENHANCED_IMAGE creative assets, this field must match the value of the creative asset’s creativeAssetId.name field.
value: Option<String>Parameter value for the specified click tag. This field contains a click-through url.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ClickTag
impl<'de> Deserialize<'de> for ClickTag
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
impl Part for ClickTag
Auto Trait Implementations§
impl Freeze for ClickTag
impl RefUnwindSafe for ClickTag
impl Send for ClickTag
impl Sync for ClickTag
impl Unpin for ClickTag
impl UnwindSafe for ClickTag
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