pub enum NmeaSentence {
Rmc(RmcFix),
Gga(GgaFix),
}Expand description
A parsed NMEA sentence.
Variants§
Rmc(RmcFix)
$GPRMC — Recommended Minimum (time, position, speed, course, date).
Gga(GgaFix)
$GPGGA — Fix data (time, position, quality, satellites, altitude).
Trait Implementations§
Source§impl Clone for NmeaSentence
impl Clone for NmeaSentence
Source§fn clone(&self) -> NmeaSentence
fn clone(&self) -> NmeaSentence
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 NmeaSentence
impl Debug for NmeaSentence
Source§impl PartialEq for NmeaSentence
impl PartialEq for NmeaSentence
impl StructuralPartialEq for NmeaSentence
Auto Trait Implementations§
impl Freeze for NmeaSentence
impl RefUnwindSafe for NmeaSentence
impl Send for NmeaSentence
impl Sync for NmeaSentence
impl Unpin for NmeaSentence
impl UnwindSafe for NmeaSentence
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