pub struct SeekPoint {
pub frame_ts: u64,
pub byte_offset: u64,
pub n_frames: u32,
}Expand description
A SeekPoint is a mapping between a sample or frame number to byte offset within a media
stream.
Fields§
§frame_ts: u64The frame or sample timestamp of the SeekPoint.
byte_offset: u64The byte offset of the SeekPoints timestamp relative to a format-specific location.
n_frames: u32The number of frames the SeekPoint covers.
Trait Implementations§
impl Copy for SeekPoint
impl Eq for SeekPoint
impl StructuralPartialEq for SeekPoint
Auto Trait Implementations§
impl Freeze for SeekPoint
impl RefUnwindSafe for SeekPoint
impl Send for SeekPoint
impl Sync for SeekPoint
impl Unpin for SeekPoint
impl UnwindSafe for SeekPoint
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