pub struct Frame<'a> {
pub data: &'a [u8],
pub key: bool,
pub pts: i64,
}
Fields§
§data: &'a [u8]
Compressed data.
key: bool
Whether the frame is a keyframe.
pts: i64
Presentation timestamp (in timebase units).
Trait Implementations§
impl<'a> Copy for Frame<'a>
Auto Trait Implementations§
impl<'a> Freeze for Frame<'a>
impl<'a> RefUnwindSafe for Frame<'a>
impl<'a> Send for Frame<'a>
impl<'a> Sync for Frame<'a>
impl<'a> Unpin for Frame<'a>
impl<'a> UnwindSafe for Frame<'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