#[repr(u32)]pub enum AvrcpCommands {
AVRCP_NEXT = 0,
AVRCP_PREVIOUS = 1,
AVRCP_PAUSE = 2,
AVRCP_PLAY_PAUSE = 3,
AVRCP_STOP = 4,
AVRCP_PLAY = 5,
AVRCP_SET_VOLUME = 6,
}Variants§
AVRCP_NEXT = 0
AVRCP_PREVIOUS = 1
AVRCP_PAUSE = 2
AVRCP_PLAY_PAUSE = 3
AVRCP_STOP = 4
AVRCP_PLAY = 5
AVRCP_SET_VOLUME = 6
Trait Implementations§
Source§impl Clone for AvrcpCommands
impl Clone for AvrcpCommands
Source§fn clone(&self) -> AvrcpCommands
fn clone(&self) -> AvrcpCommands
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 AvrcpCommands
impl Debug for AvrcpCommands
Source§impl Hash for AvrcpCommands
impl Hash for AvrcpCommands
Source§impl PartialEq for AvrcpCommands
impl PartialEq for AvrcpCommands
impl Copy for AvrcpCommands
impl Eq for AvrcpCommands
impl StructuralPartialEq for AvrcpCommands
Auto Trait Implementations§
impl Freeze for AvrcpCommands
impl RefUnwindSafe for AvrcpCommands
impl Send for AvrcpCommands
impl Sync for AvrcpCommands
impl Unpin for AvrcpCommands
impl UnwindSafe for AvrcpCommands
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