pub struct VideoData<'a> {
pub header: VideoTagHeader,
pub body: VideoTagBody<'a>,
}
Expand description
FLV VIDEODATA
tag
This is a container for legacy as well as enhanced video data.
Defined by:
- Legacy FLV spec, Annex E.4.3.1
- Enhanced RTMP spec, page 26-31, Enhanced Video
Fields§
§header: VideoTagHeader
The header of the video data.
body: VideoTagBody<'a>
The body of the video data.
Implementations§
Trait Implementations§
impl<'a> StructuralPartialEq for VideoData<'a>
Auto Trait Implementations§
impl<'a> !Freeze for VideoData<'a>
impl<'a> RefUnwindSafe for VideoData<'a>
impl<'a> Send for VideoData<'a>
impl<'a> Sync for VideoData<'a>
impl<'a> Unpin for VideoData<'a>
impl<'a> UnwindSafe for VideoData<'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