[][src]Struct google_jobs3::CommuteFilter

pub struct CommuteFilter {
    pub start_coordinates: Option<LatLng>,
    pub departure_time: Option<TimeOfDay>,
    pub commute_method: Option<String>,
    pub allow_imprecise_addresses: Option<bool>,
    pub travel_duration: Option<String>,
    pub road_traffic: Option<String>,
}

Input only.

Parameters needed for commute search.

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

Fields

start_coordinates: Option<LatLng>

Required.

The latitude and longitude of the location from which to calculate the commute time.

departure_time: Option<TimeOfDay>

Optional.

The departure time used to calculate traffic impact, represented as google.type.TimeOfDay in local time zone.

Currently traffic model is restricted to hour level resolution.

commute_method: Option<String>

Required.

The method of transportation for which to calculate the commute time.

allow_imprecise_addresses: Option<bool>

Optional. If true, jobs without "precise" addresses (street level addresses or GPS coordinates) might also be returned. For city and coarser level addresses, text matching is used. If this field is set to false or is not specified, only jobs that include precise addresses are returned by Commute Search.

Note: If allow_imprecise_addresses is set to true, Commute Search is not able to calculate accurate commute times to jobs with city level and coarser address information. Jobs with imprecise addresses will return a travel_duration time of 0 regardless of distance from the job seeker.

travel_duration: Option<String>

Required.

The maximum travel time in seconds. The maximum allowed value is 3600s (one hour). Format is 123s.

road_traffic: Option<String>

Optional.

Specifies the traffic density to use when calculating commute time.

Trait Implementations

impl Part for CommuteFilter[src]

impl Default for CommuteFilter[src]

impl Clone for CommuteFilter[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CommuteFilter[src]

impl Serialize for CommuteFilter[src]

impl<'de> Deserialize<'de> for CommuteFilter[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]