pub enum ControlPointOpcode {
RemoteScanStopped = 0,
RemoteScanStarted = 1,
AddSource = 2,
ModifySource = 3,
SetBroadcastCode = 4,
RemoveSource = 5,
}
Variants§
RemoteScanStopped = 0
RemoteScanStarted = 1
AddSource = 2
ModifySource = 3
SetBroadcastCode = 4
RemoveSource = 5
Implementations§
Trait Implementations§
Source§impl Clone for ControlPointOpcode
impl Clone for ControlPointOpcode
Source§fn clone(&self) -> ControlPointOpcode
fn clone(&self) -> ControlPointOpcode
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 ControlPointOpcode
impl Debug for ControlPointOpcode
Source§impl From<ControlPointOpcode> for u8
impl From<ControlPointOpcode> for u8
Source§fn from(v: ControlPointOpcode) -> u8
fn from(v: ControlPointOpcode) -> u8
Converts to this type from the input type.
Source§impl Hash for ControlPointOpcode
impl Hash for ControlPointOpcode
Source§impl PartialEq for ControlPointOpcode
impl PartialEq for ControlPointOpcode
Source§impl TryFrom<u8> for ControlPointOpcode
impl TryFrom<u8> for ControlPointOpcode
impl Copy for ControlPointOpcode
impl Eq for ControlPointOpcode
impl StructuralPartialEq for ControlPointOpcode
Auto Trait Implementations§
impl Freeze for ControlPointOpcode
impl RefUnwindSafe for ControlPointOpcode
impl Send for ControlPointOpcode
impl Sync for ControlPointOpcode
impl Unpin for ControlPointOpcode
impl UnwindSafe for ControlPointOpcode
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