Enum pos::point::SatelliteCount [] [src]

pub enum SatelliteCount {
    Unspecified(u16),
    Specified {
        gps: u16,
        glonass: u16,
    },
}

A count of the number of satellites.

Variants

The type of the satellites being counted is unspecified.

The type of the satellites being countes has been specified.

Fields of Specified

GPS satellties (US).

GLONASS satellites (Russia).

Trait Implementations

impl Clone for SatelliteCount
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SatelliteCount
[src]

impl Debug for SatelliteCount
[src]

Formats the value using the given formatter.

impl PartialEq for SatelliteCount
[src]

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

This method tests for !=.

impl Default for SatelliteCount
[src]

Returns the "default value" for a type. Read more