pub struct DprsReport {
pub callsign: Callsign,
pub latitude: Latitude,
pub longitude: Longitude,
pub symbol: char,
pub comment: Option<String>,
}Expand description
A parsed DPRS position report.
Fields§
§callsign: CallsignStation callsign.
latitude: LatitudeLatitude in decimal degrees.
longitude: LongitudeLongitude in decimal degrees.
symbol: charSymbol character (APRS symbol code).
comment: Option<String>Optional comment text.
Trait Implementations§
Source§impl Clone for DprsReport
impl Clone for DprsReport
Source§fn clone(&self) -> DprsReport
fn clone(&self) -> DprsReport
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 DprsReport
impl Debug for DprsReport
Source§impl PartialEq for DprsReport
impl PartialEq for DprsReport
impl StructuralPartialEq for DprsReport
Auto Trait Implementations§
impl Freeze for DprsReport
impl RefUnwindSafe for DprsReport
impl Send for DprsReport
impl Sync for DprsReport
impl Unpin for DprsReport
impl UnwindSafe for DprsReport
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