Struct symphonia_core::formats::util::SeekPoint
source · 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: u64
The frame or sample timestamp of the SeekPoint
.
byte_offset: u64
The byte offset of the SeekPoint
s timestamp relative to a format-specific location.
n_frames: u32
The number of frames the SeekPoint
covers.
Trait Implementations§
source§impl PartialEq for SeekPoint
impl PartialEq for SeekPoint
impl Copy for SeekPoint
impl Eq for SeekPoint
impl StructuralPartialEq for SeekPoint
Auto Trait Implementations§
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