pub struct NonLinearClickTracking<'a> {
pub id: Option<Cow<'a, str>>,
pub uri: Cow<'a, str>,
}Expand description
The <NonLinearClickTracking> element is used to track the click for NonLinear ad creative.
<xs:element name="NonLinearClickTracking">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="id" type="xs:string" use="optional">
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>Fields§
§id: Option<Cow<'a, str>>An id provided by the ad server to track the click in reports.
uri: Cow<'a, str>A URI to a tracking resource file used to track a NonLinear clickthrough.
Trait Implementations§
Source§impl<'a> Clone for NonLinearClickTracking<'a>
impl<'a> Clone for NonLinearClickTracking<'a>
Source§fn clone(&self) -> NonLinearClickTracking<'a>
fn clone(&self) -> NonLinearClickTracking<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for NonLinearClickTracking<'a>
impl<'a> Debug for NonLinearClickTracking<'a>
Source§impl<'a> Default for NonLinearClickTracking<'a>
impl<'a> Default for NonLinearClickTracking<'a>
Source§fn default() -> NonLinearClickTracking<'a>
fn default() -> NonLinearClickTracking<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for NonLinearClickTracking<'a>
impl<'a> PartialEq for NonLinearClickTracking<'a>
Source§impl<'__input: 'a, 'a> XmlRead<'__input> for NonLinearClickTracking<'a>
impl<'__input: 'a, 'a> XmlRead<'__input> for NonLinearClickTracking<'a>
Source§impl<'a> XmlWrite for NonLinearClickTracking<'a>
impl<'a> XmlWrite for NonLinearClickTracking<'a>
impl<'a> StructuralPartialEq for NonLinearClickTracking<'a>
Auto Trait Implementations§
impl<'a> Freeze for NonLinearClickTracking<'a>
impl<'a> RefUnwindSafe for NonLinearClickTracking<'a>
impl<'a> Send for NonLinearClickTracking<'a>
impl<'a> Sync for NonLinearClickTracking<'a>
impl<'a> Unpin for NonLinearClickTracking<'a>
impl<'a> UnwindSafe for NonLinearClickTracking<'a>
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