pub enum MuxCommandMarker {
ParameterNegotiation = 32,
Test = 8,
FlowControlOn = 40,
FlowControlOff = 24,
ModemStatus = 56,
NonSupportedCommand = 4,
RemotePortNegotiation = 36,
RemoteLineStatus = 20,
}
Expand description
The supported Multiplexer Commands in RFCOMM. These commands are sent/received over the Multiplexer Control Channel (DLCI 0) and are 6 bits wide. See RFCOMM 4.3.
Variants§
ParameterNegotiation = 32
Test = 8
FlowControlOn = 40
FlowControlOff = 24
ModemStatus = 56
NonSupportedCommand = 4
RemotePortNegotiation = 36
RemoteLineStatus = 20
Implementations§
Trait Implementations§
Source§impl Clone for MuxCommandMarker
impl Clone for MuxCommandMarker
Source§fn clone(&self) -> MuxCommandMarker
fn clone(&self) -> MuxCommandMarker
Returns a copy 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 MuxCommandMarker
impl Debug for MuxCommandMarker
Source§impl From<&MuxCommandMarker> for u8
impl From<&MuxCommandMarker> for u8
Source§fn from(v: &MuxCommandMarker) -> u8
fn from(v: &MuxCommandMarker) -> u8
Converts to this type from the input type.
Source§impl Hash for MuxCommandMarker
impl Hash for MuxCommandMarker
Source§impl PartialEq for MuxCommandMarker
impl PartialEq for MuxCommandMarker
Source§impl TryFrom<u8> for MuxCommandMarker
impl TryFrom<u8> for MuxCommandMarker
Source§type Error = FrameParseError
type Error = FrameParseError
The type returned in the event of a conversion error.
impl Copy for MuxCommandMarker
impl Eq for MuxCommandMarker
impl StructuralPartialEq for MuxCommandMarker
Auto Trait Implementations§
impl Freeze for MuxCommandMarker
impl RefUnwindSafe for MuxCommandMarker
impl Send for MuxCommandMarker
impl Sync for MuxCommandMarker
impl Unpin for MuxCommandMarker
impl UnwindSafe for MuxCommandMarker
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)