pub struct TrackLogConfig {
pub record_method: TrackRecordMethod,
pub interval_seconds: u16,
pub distance_meters: u16,
}Expand description
Track log recording configuration.
The TH-D75 records GPS track logs to the microSD card at
/KENWOOD/TH-D75/GPS_LOG/ in NMEA format (.nme files).
Fields§
§record_method: TrackRecordMethodTrack log recording method.
interval_seconds: u16Recording interval in seconds (range 1-9999).
Used when record_method is Interval.
distance_meters: u16Recording distance in meters (range 10-9999).
Used when record_method is Distance.
Trait Implementations§
Source§impl Clone for TrackLogConfig
impl Clone for TrackLogConfig
Source§fn clone(&self) -> TrackLogConfig
fn clone(&self) -> TrackLogConfig
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 TrackLogConfig
impl Debug for TrackLogConfig
Source§impl Default for TrackLogConfig
impl Default for TrackLogConfig
Source§impl Hash for TrackLogConfig
impl Hash for TrackLogConfig
Source§impl PartialEq for TrackLogConfig
impl PartialEq for TrackLogConfig
impl Copy for TrackLogConfig
impl Eq for TrackLogConfig
impl StructuralPartialEq for TrackLogConfig
Auto Trait Implementations§
impl Freeze for TrackLogConfig
impl RefUnwindSafe for TrackLogConfig
impl Send for TrackLogConfig
impl Sync for TrackLogConfig
impl Unpin for TrackLogConfig
impl UnwindSafe for TrackLogConfig
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