pub struct WaypointConfig {
pub format: WaypointFormat,
pub length: u8,
pub output: bool,
}Expand description
Waypoint output configuration.
Controls how APRS waypoint data is formatted and output to external GPS devices or PC software.
Fields§
§format: WaypointFormatWaypoint output format.
length: u8Number of waypoints to output (range 1-99, or 0 for all).
output: boolEnable waypoint output to the serial port.
Trait Implementations§
Source§impl Clone for WaypointConfig
impl Clone for WaypointConfig
Source§fn clone(&self) -> WaypointConfig
fn clone(&self) -> WaypointConfig
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 WaypointConfig
impl Debug for WaypointConfig
Source§impl Default for WaypointConfig
impl Default for WaypointConfig
Source§impl Hash for WaypointConfig
impl Hash for WaypointConfig
Source§impl PartialEq for WaypointConfig
impl PartialEq for WaypointConfig
impl Copy for WaypointConfig
impl Eq for WaypointConfig
impl StructuralPartialEq for WaypointConfig
Auto Trait Implementations§
impl Freeze for WaypointConfig
impl RefUnwindSafe for WaypointConfig
impl Send for WaypointConfig
impl Sync for WaypointConfig
impl Unpin for WaypointConfig
impl UnwindSafe for WaypointConfig
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