Struct symphonia_core::formats::SeekedTo
source · pub struct SeekedTo {
pub track_id: u32,
pub required_ts: TimeStamp,
pub actual_ts: TimeStamp,
}
Expand description
SeekedTo
is the result of a seek.
Fields§
§track_id: u32
The track the seek was relative to.
required_ts: TimeStamp
The TimeStamp
required for the requested seek.
actual_ts: TimeStamp
The TimeStamp
that was seeked to.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SeekedTo
impl Send for SeekedTo
impl Sync for SeekedTo
impl Unpin for SeekedTo
impl UnwindSafe for SeekedTo
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