pub enum PlayingTrack {
Index(u32),
Uri(String),
// some variants omitted
}Expand description
An item that represent a track to play
Variants§
Trait Implementations§
Source§impl Clone for PlayingTrack
impl Clone for PlayingTrack
Source§fn clone(&self) -> PlayingTrack
fn clone(&self) -> PlayingTrack
Returns a duplicate of the value. Read more
1.0.0 · 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 PlayingTrack
impl Debug for PlayingTrack
Auto Trait Implementations§
impl Freeze for PlayingTrack
impl RefUnwindSafe for PlayingTrack
impl Send for PlayingTrack
impl Sync for PlayingTrack
impl Unpin for PlayingTrack
impl UnwindSafe for PlayingTrack
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