pub struct GpsLog {
pub sentences: Vec<NmeaSentence>,
pub errors: usize,
}Expand description
A complete parsed GPS log file.
Fields§
§sentences: Vec<NmeaSentence>All successfully parsed sentences in file order.
errors: usizeNumber of lines that failed to parse.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GpsLog
impl RefUnwindSafe for GpsLog
impl Send for GpsLog
impl Sync for GpsLog
impl Unpin for GpsLog
impl UnwindSafe for GpsLog
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