pub struct VerificationTracking<'a> {
pub event: Cow<'a, str>,
pub uri: Cow<'a, str>,
}Expand description
Each <Tracking> element is used to define a single event to be tracked by the verification
vendor.
<xs:element name="Tracking">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="event" type="xs:string" use="required">
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>Fields§
§event: Cow<'a, str>A string that defines the event being tracked. Accepted values are listed in section 3.17.3.
uri: Cow<'a, str>A URI to the tracking resource for the event specified using the event attribute.
Trait Implementations§
Source§impl<'a> Clone for VerificationTracking<'a>
impl<'a> Clone for VerificationTracking<'a>
Source§fn clone(&self) -> VerificationTracking<'a>
fn clone(&self) -> VerificationTracking<'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 VerificationTracking<'a>
impl<'a> Debug for VerificationTracking<'a>
Source§impl<'a> Default for VerificationTracking<'a>
impl<'a> Default for VerificationTracking<'a>
Source§fn default() -> VerificationTracking<'a>
fn default() -> VerificationTracking<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for VerificationTracking<'a>
impl<'a> PartialEq for VerificationTracking<'a>
Source§impl<'__input: 'a, 'a> XmlRead<'__input> for VerificationTracking<'a>
impl<'__input: 'a, 'a> XmlRead<'__input> for VerificationTracking<'a>
Source§impl<'a> XmlWrite for VerificationTracking<'a>
impl<'a> XmlWrite for VerificationTracking<'a>
impl<'a> StructuralPartialEq for VerificationTracking<'a>
Auto Trait Implementations§
impl<'a> Freeze for VerificationTracking<'a>
impl<'a> RefUnwindSafe for VerificationTracking<'a>
impl<'a> Send for VerificationTracking<'a>
impl<'a> Sync for VerificationTracking<'a>
impl<'a> Unpin for VerificationTracking<'a>
impl<'a> UnwindSafe for VerificationTracking<'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