Struct google_coordinate1::LocationRecord [] [src]

pub struct LocationRecord {
    pub latitude: Option<f64>,
    pub collection_time: Option<String>,
    pub confidence_radius: Option<f64>,
    pub kind: Option<String>,
    pub longitude: Option<f64>,
}

Recorded location of a worker.

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

Fields

Latitude.

The collection time in milliseconds since the epoch.

The location accuracy in meters. This is the radius of a 95% confidence interval around the location measurement.

Identifies this object as a location.

Longitude.

Trait Implementations

impl Debug for LocationRecord
[src]

Formats the value using the given formatter.

impl Clone for LocationRecord
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for LocationRecord
[src]

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

impl Part for LocationRecord
[src]