pub struct IvfFrameHeader {
pub frame_size: u32,
pub timestamp: u64,
}
Expand description
Helper struct for synthesizing IVF frame header
Fields§
§frame_size: u32
§timestamp: u64
Implementations§
Source§impl IvfFrameHeader
impl IvfFrameHeader
Sourcepub fn writo_into(&self, writer: &mut impl Write) -> Result<()>
pub fn writo_into(&self, writer: &mut impl Write) -> Result<()>
Writes header into writer
Auto Trait Implementations§
impl Freeze for IvfFrameHeader
impl RefUnwindSafe for IvfFrameHeader
impl Send for IvfFrameHeader
impl Sync for IvfFrameHeader
impl Unpin for IvfFrameHeader
impl UnwindSafe for IvfFrameHeader
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