pub struct DstarQsoEntry {Show 14 fields
pub direction: QsoDirection,
pub caller: DstarCallsign,
pub called: DstarCallsign,
pub rpt1: DstarCallsign,
pub rpt2: DstarCallsign,
pub message: String,
pub break_in: bool,
pub emr: bool,
pub fast_data: bool,
pub remote_latitude: Option<f64>,
pub remote_longitude: Option<f64>,
pub remote_altitude: Option<f64>,
pub remote_course: Option<f64>,
pub remote_speed: Option<f64>,
}Expand description
D-STAR QSO log entry.
Extends the generic QSO log with D-STAR-specific fields from the
24-column TSV format stored on the SD card at
/KENWOOD/TH-D75/QSO_LOG/.
Fields§
§direction: QsoDirectionTX or RX direction.
caller: DstarCallsignSource callsign (MYCALL).
called: DstarCallsignDestination callsign (URCALL).
rpt1: DstarCallsignRPT1 callsign (link source repeater).
rpt2: DstarCallsignRPT2 callsign (link destination repeater).
message: StringD-STAR slow-data message content.
break_in: boolBreak-in flag.
emr: boolEMR (emergency) flag.
fast_data: boolFast data flag.
remote_latitude: Option<f64>Remote station latitude (from D-STAR GPS data).
remote_longitude: Option<f64>Remote station longitude (from D-STAR GPS data).
remote_altitude: Option<f64>Remote station altitude in meters.
remote_course: Option<f64>Remote station course in degrees.
remote_speed: Option<f64>Remote station speed in km/h.
Trait Implementations§
Source§impl Clone for DstarQsoEntry
impl Clone for DstarQsoEntry
Source§fn clone(&self) -> DstarQsoEntry
fn clone(&self) -> DstarQsoEntry
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 DstarQsoEntry
impl Debug for DstarQsoEntry
Source§impl PartialEq for DstarQsoEntry
impl PartialEq for DstarQsoEntry
impl StructuralPartialEq for DstarQsoEntry
Auto Trait Implementations§
impl Freeze for DstarQsoEntry
impl RefUnwindSafe for DstarQsoEntry
impl Send for DstarQsoEntry
impl Sync for DstarQsoEntry
impl Unpin for DstarQsoEntry
impl UnwindSafe for DstarQsoEntry
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