Struct google_firestore1_beta1::LatLng[][src]

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

An object representing a latitude/longitude pair. This is expressed as a pair of doubles representing degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.

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

Fields

The latitude in degrees. It must be in the range [-90.0, +90.0].

The longitude in degrees. It must be in the range [-180.0, +180.0].

Trait Implementations

impl Default for LatLng
[src]

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

impl Clone for LatLng
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LatLng
[src]

Formats the value using the given formatter. Read more

impl Part for LatLng
[src]

Auto Trait Implementations

impl Send for LatLng

impl Sync for LatLng