Enum symphonia_core::formats::SeekTo
source · pub enum SeekTo {
Time {
time: Time,
track_id: Option<u32>,
},
TimeStamp {
ts: TimeStamp,
track_id: u32,
},
}
Expand description
SeekTo
specifies a position to seek to.
Variants§
Time
Fields
Seek to a Time
in regular time units.
TimeStamp
Fields
Seek to a track’s TimeStamp
in that track’s timebase units.
Auto Trait Implementations§
impl RefUnwindSafe for SeekTo
impl Send for SeekTo
impl Sync for SeekTo
impl Unpin for SeekTo
impl UnwindSafe for SeekTo
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