pub enum VideoTagHeaderData {
Legacy(LegacyVideoTagHeader),
Enhanced(ExVideoTagHeader),
}
Expand description
A wrapper for the different types of video tag header data.
Variants§
Legacy(LegacyVideoTagHeader)
Legacy video tag header.
Enhanced(ExVideoTagHeader)
Enhanced video tag header.
Trait Implementations§
Source§impl Clone for VideoTagHeaderData
impl Clone for VideoTagHeaderData
Source§fn clone(&self) -> VideoTagHeaderData
fn clone(&self) -> VideoTagHeaderData
Returns a copy 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 Debug for VideoTagHeaderData
impl Debug for VideoTagHeaderData
Source§impl PartialEq for VideoTagHeaderData
impl PartialEq for VideoTagHeaderData
impl StructuralPartialEq for VideoTagHeaderData
Auto Trait Implementations§
impl Freeze for VideoTagHeaderData
impl RefUnwindSafe for VideoTagHeaderData
impl Send for VideoTagHeaderData
impl Sync for VideoTagHeaderData
impl Unpin for VideoTagHeaderData
impl UnwindSafe for VideoTagHeaderData
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