[][src]Struct gcp_client::google::cloud::talent::v4beta1::LocationFilter

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

Geographic region of the search.

Fields

address: String

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

region_code: String

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 to bias location resolution toward a specific country or territory. If this field is not set, application behavior is biased toward the United States by default.

See https://cldr.unicode.org/ and https://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland. Note that this filter is not applicable for Profile Search related queries.

lat_lng: Option<LatLng>

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

distance_in_miles: f64

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

telecommute_preference: i32

Allows the client to return jobs without a set location, specifically, telecommuting jobs (telecommuting is considered by the service as a special location. [Job.posting_region][google.cloud.talent.v4beta1.Job.posting_region] indicates if a job permits telecommuting. If this field is set to [TelecommutePreference.TELECOMMUTE_ALLOWED][google.cloud.talent.v4beta1.LocationFilter.TelecommutePreference.TELECOMMUTE_ALLOWED], telecommuting jobs are searched, and [address][google.cloud.talent.v4beta1.LocationFilter.address] and [lat_lng][google.cloud.talent.v4beta1.LocationFilter.lat_lng] are ignored. If not set or set to [TelecommutePreference.TELECOMMUTE_EXCLUDED][google.cloud.talent.v4beta1.LocationFilter.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.

This field is only used for job search requests.

negated: bool

Whether to apply negation to the filter so profiles matching the filter are excluded.

Currently only supported in profile search.

Implementations

impl LocationFilter[src]

pub fn telecommute_preference(&self) -> TelecommutePreference[src]

Returns the enum value of telecommute_preference, or the default if the field is set to an invalid enum value.

pub fn set_telecommute_preference(&mut self, value: TelecommutePreference)[src]

Sets telecommute_preference to the provided enum value.

Trait Implementations

impl Clone for LocationFilter[src]

impl Debug for LocationFilter[src]

impl Default for LocationFilter[src]

impl Message for LocationFilter[src]

impl PartialEq<LocationFilter> for LocationFilter[src]

impl StructuralPartialEq for LocationFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]