Enum nmea0183::ParseResult[][src]

pub enum ParseResult {
    RMC(Option<RMC>),
    GGA(Option<GGA>),
    GLL(Option<GLL>),
    VTG(Option<VTG>),
}
Expand description

The NMEA sentence parsing result. Sentences with many null fields or sentences without valid data is also parsed and returned as None. None ParseResult may be interpreted as working receiver but without valid data.

Variants

RMC

The Recommended Minimum Sentence for any GNSS. Typically most used.

Tuple Fields of RMC

0: Option<RMC>
GGA

The Geographic coordinates including altitude, GPS solution quality, DGPS usage information.

Tuple Fields of GGA

0: Option<GGA>
GLL

The Geographic latitude ang longitude sentence with time of fix and the receiver state.

Tuple Fields of GLL

0: Option<GLL>
VTG

The actual course and speed relative to the ground.

Tuple Fields of VTG

0: Option<VTG>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.