pub struct SeekPoint {
pub sample: u64,
pub offset: u64,
pub samples: u16,
}
Expand description
A seek point in the seek table.
Fields§
§sample: u64
Sample number of the first sample in the target frame, or 264 - 1 for a placeholder.
offset: u64
Offset in bytes from the first byte of the first frame header to the first byte of the target frame’s header.
samples: u16
Number of samples in the target frame.
Trait Implementations§
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