Enum symphonia_core::formats::SeekTo[][src]

pub enum SeekTo {
    Time {
        time: Time,
    },
    TimeStamp {
        ts: TimeStamp,
        stream: u32,
    },
}

SeekTo specifies a location to seek to.

Variants

Time

Seek to an absolute Time.

Fields of Time

time: Time
TimeStamp

Seek to a stream’s TimeStamp.

Fields of TimeStamp

ts: TimeStampstream: u32

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<F, T> IntoSample<T> for F where
    T: FromSample<F>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.