pub struct FlvHeader {
pub version: u8,
pub is_audio_present: bool,
pub is_video_present: bool,
pub remaining: u32,
}Fields§
§version: u8The version of the FLV file.
is_audio_present: boolWhether the FLV file contains audio tags.
is_video_present: boolWhether the FLV file contains video tags.
remaining: u32Trait Implementations§
impl StructuralPartialEq for FlvHeader
Auto Trait Implementations§
impl Freeze for FlvHeader
impl RefUnwindSafe for FlvHeader
impl Send for FlvHeader
impl Sync for FlvHeader
impl Unpin for FlvHeader
impl UnsafeUnpin for FlvHeader
impl UnwindSafe for FlvHeader
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