pub enum TrackPhaseTag {
Decoding,
SeekRequested,
WaitingForSource,
ApplyingSeek,
RecreatingDecoder,
AwaitingResume,
AtEof,
Failed,
}Expand description
Fieldless discriminant of [TrackState] for external phase queries.
Variants§
Trait Implementations§
Source§impl Clone for TrackPhaseTag
impl Clone for TrackPhaseTag
Source§fn clone(&self) -> TrackPhaseTag
fn clone(&self) -> TrackPhaseTag
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TrackPhaseTag
impl Debug for TrackPhaseTag
Source§impl PartialEq for TrackPhaseTag
impl PartialEq for TrackPhaseTag
Source§fn eq(&self, other: &TrackPhaseTag) -> bool
fn eq(&self, other: &TrackPhaseTag) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TrackPhaseTag
impl Eq for TrackPhaseTag
impl StructuralPartialEq for TrackPhaseTag
Auto Trait Implementations§
impl Freeze for TrackPhaseTag
impl RefUnwindSafe for TrackPhaseTag
impl Send for TrackPhaseTag
impl Sync for TrackPhaseTag
impl Unpin for TrackPhaseTag
impl UnsafeUnpin for TrackPhaseTag
impl UnwindSafe for TrackPhaseTag
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