pub enum AprsIcon {
}Expand description
APRS map icon (symbol table + symbol code).
APRS uses a two-character encoding: the first character selects the
symbol table (/ for primary, \ for alternate), and the second
character selects the specific icon within that table.
Variants§
House
House (primary table /).
Car
Car / automobile (primary table /).
Portable
Portable / HT (primary table /).
Jogger
Jogger / runner (primary table /).
Bicycle
Bicycle (primary table /).
Motorcycle
Motorcycle (primary table /).
Yacht
Yacht / sailboat (primary table /).
Ambulance
Ambulance (primary table /).
FireTruck
Fire truck (primary table /).
Helicopter
Helicopter (primary table /).
Aircraft
Aircraft / small plane (primary table /).
WeatherStation
Weather station (primary table /).
Digipeater
Digipeater (primary table /).
IGate
IGate (alternate table \).
Truck
Truck (primary table /).
Custom
Custom icon specified by raw table and code characters.
Trait Implementations§
impl Copy for AprsIcon
impl Eq for AprsIcon
impl StructuralPartialEq for AprsIcon
Auto Trait Implementations§
impl Freeze for AprsIcon
impl RefUnwindSafe for AprsIcon
impl Send for AprsIcon
impl Sync for AprsIcon
impl Unpin for AprsIcon
impl UnwindSafe for AprsIcon
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