pub struct AprsSymbol {
pub table: SymbolTable,
pub code: u8,
}Expand description
A full APRS symbol (table selector + 1-byte code).
Example: AprsSymbol { table: SymbolTable::Primary, code: b'>' } is
the car icon (/>).
Fields§
§table: SymbolTableSymbol table selector.
code: u8Symbol code character (1 byte, spec range is ! through ~).
Implementations§
Trait Implementations§
Source§impl Clone for AprsSymbol
impl Clone for AprsSymbol
Source§fn clone(&self) -> AprsSymbol
fn clone(&self) -> AprsSymbol
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 AprsSymbol
impl Debug for AprsSymbol
Source§impl Hash for AprsSymbol
impl Hash for AprsSymbol
Source§impl PartialEq for AprsSymbol
impl PartialEq for AprsSymbol
impl Copy for AprsSymbol
impl Eq for AprsSymbol
impl StructuralPartialEq for AprsSymbol
Auto Trait Implementations§
impl Freeze for AprsSymbol
impl RefUnwindSafe for AprsSymbol
impl Send for AprsSymbol
impl Sync for AprsSymbol
impl Unpin for AprsSymbol
impl UnwindSafe for AprsSymbol
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