Struct google_spectrum1_explorer::GeoLocationPoint[][src]

pub struct GeoLocationPoint {
    pub latitude: Option<f64>,
    pub longitude: Option<f64>,
}

A single geolocation on the globe.

This type is not used in any activity, and only used as part of another schema.

Fields

A required floating-point number that expresses the latitude in degrees using the WGS84 datum. For details on this encoding, see the National Imagery and Mapping Agency's Technical Report TR8350.2.

A required floating-point number that expresses the longitude in degrees using the WGS84 datum. For details on this encoding, see the National Imagery and Mapping Agency's Technical Report TR8350.2.

Trait Implementations

impl Default for GeoLocationPoint
[src]

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

impl Clone for GeoLocationPoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GeoLocationPoint
[src]

Formats the value using the given formatter. Read more

impl Part for GeoLocationPoint
[src]

Auto Trait Implementations