pub struct VerificationTrackingEvents<'a> {
pub trackings: Vec<VerificationTracking<'a>>,
}Expand description
The verification vendor may provide URIs for tracking events relating to the execution of their code during the ad session.
<xs:complexType name="TrackingEvents" >
<xs:sequence>
<xs:element name="Tracking" minOccurs="0" maxOccurs="unbounded">
</xs:sequence>
</xs:complexType>Fields§
§trackings: Vec<VerificationTracking<'a>>The container for zero or more <Tracking> elements.
Trait Implementations§
Source§impl<'a> Clone for VerificationTrackingEvents<'a>
impl<'a> Clone for VerificationTrackingEvents<'a>
Source§fn clone(&self) -> VerificationTrackingEvents<'a>
fn clone(&self) -> VerificationTrackingEvents<'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 VerificationTrackingEvents<'a>
impl<'a> Debug for VerificationTrackingEvents<'a>
Source§impl<'a> Default for VerificationTrackingEvents<'a>
impl<'a> Default for VerificationTrackingEvents<'a>
Source§fn default() -> VerificationTrackingEvents<'a>
fn default() -> VerificationTrackingEvents<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for VerificationTrackingEvents<'a>
impl<'a> PartialEq for VerificationTrackingEvents<'a>
Source§fn eq(&self, other: &VerificationTrackingEvents<'a>) -> bool
fn eq(&self, other: &VerificationTrackingEvents<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'__input: 'a, 'a> XmlRead<'__input> for VerificationTrackingEvents<'a>
impl<'__input: 'a, 'a> XmlRead<'__input> for VerificationTrackingEvents<'a>
Source§impl<'a> XmlWrite for VerificationTrackingEvents<'a>
impl<'a> XmlWrite for VerificationTrackingEvents<'a>
impl<'a> StructuralPartialEq for VerificationTrackingEvents<'a>
Auto Trait Implementations§
impl<'a> Freeze for VerificationTrackingEvents<'a>
impl<'a> RefUnwindSafe for VerificationTrackingEvents<'a>
impl<'a> Send for VerificationTrackingEvents<'a>
impl<'a> Sync for VerificationTrackingEvents<'a>
impl<'a> Unpin for VerificationTrackingEvents<'a>
impl<'a> UnwindSafe for VerificationTrackingEvents<'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