pub enum MicEMessage {
Show 16 variants
M0,
M1,
M2,
M3,
M4,
M5,
M6,
C0,
C1,
C2,
C3,
C4,
C5,
C6,
Emergency,
Unknown,
}Expand description
MIC-E message type encoded in the destination callsign.
Standard types (M0–M6) are defined in APRS101; Custom types (C0–C6) are radio-specific; Emergency is encoded as all-zeros.
Variants§
Trait Implementations§
Source§impl Clone for MicEMessage
impl Clone for MicEMessage
Source§fn clone(&self) -> MicEMessage
fn clone(&self) -> MicEMessage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MicEMessage
impl Debug for MicEMessage
Source§impl Hash for MicEMessage
impl Hash for MicEMessage
Source§impl PartialEq for MicEMessage
impl PartialEq for MicEMessage
Source§fn eq(&self, other: &MicEMessage) -> bool
fn eq(&self, other: &MicEMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MicEMessage
impl Eq for MicEMessage
impl StructuralPartialEq for MicEMessage
Auto Trait Implementations§
impl Freeze for MicEMessage
impl RefUnwindSafe for MicEMessage
impl Send for MicEMessage
impl Sync for MicEMessage
impl Unpin for MicEMessage
impl UnsafeUnpin for MicEMessage
impl UnwindSafe for MicEMessage
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