pub enum VastVersion {
V2_0,
V3_0,
V4_0,
V4_1,
V4_2,
V4_3,
}Expand description
The VAST version as declared in the version attribute or inferred from
document structure.
Covers all versions published by IAB Tech Lab: 2.0 through 4.3.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VastVersion
impl Clone for VastVersion
Source§fn clone(&self) -> VastVersion
fn clone(&self) -> VastVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VastVersion
impl Debug for VastVersion
Source§impl PartialEq for VastVersion
impl PartialEq for VastVersion
Source§fn eq(&self, other: &VastVersion) -> bool
fn eq(&self, other: &VastVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VastVersion
impl Eq for VastVersion
impl StructuralPartialEq for VastVersion
Auto Trait Implementations§
impl Freeze for VastVersion
impl RefUnwindSafe for VastVersion
impl Send for VastVersion
impl Sync for VastVersion
impl Unpin for VastVersion
impl UnsafeUnpin for VastVersion
impl UnwindSafe for VastVersion
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