pub struct VideoTag {
pub header: VideoTagHeader,
pub body: VideoTagBody,
pub track_id: u8,
}Expand description
The tag data part of video FLV tag, including tag data header and tag data body.
Fields§
§header: VideoTagHeaderThe header part of video FLV tag.
body: VideoTagBodyThe body part of video FLV tag.
track_id: u8Track ID
Trait Implementations§
impl StructuralPartialEq for VideoTag
Auto Trait Implementations§
impl Freeze for VideoTag
impl RefUnwindSafe for VideoTag
impl Send for VideoTag
impl Sync for VideoTag
impl Unpin for VideoTag
impl UnsafeUnpin for VideoTag
impl UnwindSafe for VideoTag
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