pub enum FlvTagData {
Audio(AudioTag),
Video(VideoTag),
Meta(MetaTag),
Unknown,
}Expand description
The tag data part of FLV tag.
Variants§
Audio(AudioTag)
Audio tag data.
Video(VideoTag)
Video tag data.
Meta(MetaTag)
Script tag data.
Unknown
Unknown
Trait Implementations§
Source§impl Clone for FlvTagData
impl Clone for FlvTagData
Source§fn clone(&self) -> FlvTagData
fn clone(&self) -> FlvTagData
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 FlvTagData
impl Debug for FlvTagData
Source§impl PartialEq for FlvTagData
impl PartialEq for FlvTagData
impl StructuralPartialEq for FlvTagData
Auto Trait Implementations§
impl !Freeze for FlvTagData
impl RefUnwindSafe for FlvTagData
impl Send for FlvTagData
impl Sync for FlvTagData
impl Unpin for FlvTagData
impl UnsafeUnpin for FlvTagData
impl UnwindSafe for FlvTagData
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