Enum symphonia_core::errors::SeekErrorKind
source · pub enum SeekErrorKind {
Unseekable,
ForwardOnly,
OutOfRange,
InvalidTrack,
}
Expand description
SeekErrorKind
is a list of generic reasons why a seek may fail.
Variants§
Unseekable
The stream is not seekable at all.
ForwardOnly
The stream can only be seeked forward.
OutOfRange
The timestamp to seek to is out of range.
InvalidTrack
The track ID provided is invalid.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for SeekErrorKind
impl Send for SeekErrorKind
impl Sync for SeekErrorKind
impl Unpin for SeekErrorKind
impl UnwindSafe for SeekErrorKind
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