#[repr(u32)]pub enum PB_STATE_e {
MP_STOPPED = 0,
MP_REQUEST_FOR_PLAY = 1,
MP_PLAYING = 2,
MP_PAUSED = 3,
MP_PREVTRACK = 4,
MP_NEXTTRACK = 5,
MP_TRACK_FINISHED = 6,
MP_LOAD_FILE_AND_PAUSE = 7,
}Variants§
MP_STOPPED = 0
MP_REQUEST_FOR_PLAY = 1
MP_PLAYING = 2
MP_PAUSED = 3
MP_PREVTRACK = 4
MP_NEXTTRACK = 5
MP_TRACK_FINISHED = 6
MP_LOAD_FILE_AND_PAUSE = 7
Trait Implementations§
Source§impl Clone for PB_STATE_e
impl Clone for PB_STATE_e
Source§fn clone(&self) -> PB_STATE_e
fn clone(&self) -> PB_STATE_e
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 PB_STATE_e
impl Debug for PB_STATE_e
Source§impl Hash for PB_STATE_e
impl Hash for PB_STATE_e
Source§impl PartialEq for PB_STATE_e
impl PartialEq for PB_STATE_e
impl Copy for PB_STATE_e
impl Eq for PB_STATE_e
impl StructuralPartialEq for PB_STATE_e
Auto Trait Implementations§
impl Freeze for PB_STATE_e
impl RefUnwindSafe for PB_STATE_e
impl Send for PB_STATE_e
impl Sync for PB_STATE_e
impl Unpin for PB_STATE_e
impl UnwindSafe for PB_STATE_e
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