pub enum SymbolTable {
Primary,
Alternate,
Overlay(u8),
}Expand description
An APRS symbol table selector.
Per APRS 1.0.1 §5.1, the first character of a position report’s symbol pair selects the table:
/— Primary table (most common symbols)\— Alternate table0-9orA-Z— Overlay character (displays on top of the alternate table’s symbol) used for groups and regional indicators
Variants§
Primary
Primary table (/).
Alternate
Alternate table (\).
Overlay(u8)
Overlay character (digit or uppercase letter) on the alternate table.
Implementations§
Source§impl SymbolTable
impl SymbolTable
Trait Implementations§
Source§impl Clone for SymbolTable
impl Clone for SymbolTable
Source§fn clone(&self) -> SymbolTable
fn clone(&self) -> SymbolTable
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 SymbolTable
impl Debug for SymbolTable
Source§impl Hash for SymbolTable
impl Hash for SymbolTable
Source§impl PartialEq for SymbolTable
impl PartialEq for SymbolTable
impl Copy for SymbolTable
impl Eq for SymbolTable
impl StructuralPartialEq for SymbolTable
Auto Trait Implementations§
impl Freeze for SymbolTable
impl RefUnwindSafe for SymbolTable
impl Send for SymbolTable
impl Sync for SymbolTable
impl Unpin for SymbolTable
impl UnwindSafe for SymbolTable
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