Struct google_jobs3::LocationFilter[][src]

pub struct LocationFilter {
    pub region_code: Option<String>,
    pub lat_lng: Option<LatLng>,
    pub address: Option<String>,
    pub telecommute_preference: Option<String>,
    pub distance_in_miles: Option<f64>,
}

Input only.

Geographic region of the search.

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

Fields

Optional.

CLDR region code of the country/region of the address. This is used to address ambiguity of the user-input location, for example, "Liverpool" against "Liverpool, NY, US" or "Liverpool, UK".

Set this field if all the jobs to search against are from a same region, or jobs are world-wide, but the job seeker is from a specific region.

See http://cldr.unicode.org/ and http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.

Optional.

The latitude and longitude of the geographic center from which to search. This field's ignored if address is provided.

Optional.

The address name, such as "Mountain View" or "Bay Area".

Optional.

Allows the client to return jobs without a set location, specifically, telecommuting jobs (telecomuting is considered by the service as a special location. Job.posting_region indicates if a job permits telecommuting. If this field is set to TelecommutePreference.TELECOMMUTE_ALLOWED, telecommuting jobs are searched, and address and lat_lng are ignored. If not set or set to TelecommutePreference.TELECOMMUTE_EXCLUDED, telecommute job are not searched.

This filter can be used by itself to search exclusively for telecommuting jobs, or it can be combined with another location filter to search for a combination of job locations, such as "Mountain View" or "telecommuting" jobs. However, when used in combination with other location filters, telecommuting jobs can be treated as less relevant than other jobs in the search response.

Optional.

The distance_in_miles is applied when the location being searched for is identified as a city or smaller. When the location being searched for is a state or larger, this field is ignored.

Trait Implementations

impl Default for LocationFilter
[src]

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

impl Clone for LocationFilter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LocationFilter
[src]

Formats the value using the given formatter. Read more

impl Part for LocationFilter
[src]

Auto Trait Implementations