pub enum PlaybackOutcome {
Reached,
Interrupted,
Closed,
}Variants§
Trait Implementations§
Source§impl Clone for PlaybackOutcome
impl Clone for PlaybackOutcome
Source§fn clone(&self) -> PlaybackOutcome
fn clone(&self) -> PlaybackOutcome
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 moreimpl Copy for PlaybackOutcome
Source§impl Debug for PlaybackOutcome
impl Debug for PlaybackOutcome
impl Eq for PlaybackOutcome
Source§impl PartialEq for PlaybackOutcome
impl PartialEq for PlaybackOutcome
Source§fn eq(&self, other: &PlaybackOutcome) -> bool
fn eq(&self, other: &PlaybackOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlaybackOutcome
Auto Trait Implementations§
impl Freeze for PlaybackOutcome
impl RefUnwindSafe for PlaybackOutcome
impl Send for PlaybackOutcome
impl Sync for PlaybackOutcome
impl Unpin for PlaybackOutcome
impl UnsafeUnpin for PlaybackOutcome
impl UnwindSafe for PlaybackOutcome
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