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: u32The track the seek was relative to.
required_ts: TimeStampThe TimeStamp required for the requested seek.
actual_ts: TimeStampThe TimeStamp that was seeked to.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SeekedTo
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