Struct google_jobs3::Location[][src]

pub struct Location {
    pub location_type: Option<String>,
    pub radius_in_miles: Option<f64>,
    pub lat_lng: Option<LatLng>,
    pub postal_address: Option<PostalAddress>,
}

Output only.

A resource that represents a location with full geographic information.

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

Fields

The type of a location, which corresponds to the address lines field of PostalAddress. For example, "Downtown, Atlanta, GA, USA" has a type of LocationType#NEIGHBORHOOD, and "Kansas City, KS, USA" has a type of LocationType#LOCALITY.

Radius in meters of the job location. This value is derived from the location bounding box in which a circle with the specified radius centered from LatLng coves the area associated with the job location. For example, currently, "Mountain View, CA, USA" has a radius of 6.17 miles.

An object representing a latitude/longitude pair.

Postal address of the location that includes human readable information, such as postal delivery and payments addresses. Given a postal address, a postal service can deliver items to a premises, P.O. Box, or other delivery location.

Trait Implementations

impl Default for Location
[src]

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

impl Clone for Location
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Location
[src]

Formats the value using the given formatter. Read more

impl Part for Location
[src]

Auto Trait Implementations

impl Send for Location

impl Sync for Location