Enum gpx::Fix[][src]

pub enum Fix {
    None,
    TwoDimensional,
    ThreeDimensional,
    DGPS,
    PPS,
    Other(String),
}

Type of the GPS fix.

Variants

The GPS had no fix. To signify "the fix info is unknown", leave out the Fix entirely.

2D fix gives only longitude and latitude. It needs a minimum of 3 satellites.

3D fix gives longitude, latitude and altitude. It needs a minimum of 4 satellites.

Differential Global Positioning System.

Military signal.

Other values that are not in the specification.

Trait Implementations

impl Clone for Fix
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Fix
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Fix
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Fix

impl Sync for Fix