Struct gapi_grpc::google::maps::routes::v1::Waypoint[][src]

pub struct Waypoint {
    pub via: bool,
    pub vehicle_stopover: bool,
    pub side_of_road: bool,
    pub location_type: Option<LocationType>,
}

Encapsulates a waypoint. Waypoints mark both the beginning and end of a route, and include intermediate stops along the route.

Fields

via: bool

Marks this waypoint as a milestone, as opposed to a stopping point. For each non-via waypoint in the request, the response appends an entry to the legs array to provide the details for stopovers on that leg of the trip. Set this value to true when you want the route to pass through this waypoint without stopping over. Via waypoints don’t cause an entry to be added to the legs array, but they do route the journey through the waypoint. You can only set this value on waypoints that are intermediates. If you set this field on terminal waypoints, then the request fails.

vehicle_stopover: bool

Indicates that the waypoint is meant for vehicles to stop at, where the intention is to either pickup or drop-off. When you set this value, the calculated route won’t include non-via waypoints on roads that are unsuitable for pickup and drop-off. This option works only for DRIVE and TWO_WHEELER travel modes, and when the location_type is location.

side_of_road: bool

Indicates that the location of this waypoint is meant to have a preference for the vehicle to stop at a particular side of road. When you set this value, the route will pass through the location so that the vehicle can stop at the side of road that the location is biased towards from the center of the road. This option works only for ‘DRIVE’ and ‘TWO_WHEELER’ travel modes, and when the ‘location_type’ is set to ‘location’.

location_type: Option<LocationType>

Different ways to represent a location.

Trait Implementations

impl Clone for Waypoint[src]

impl Debug for Waypoint[src]

impl Default for Waypoint[src]

impl Message for Waypoint[src]

impl PartialEq<Waypoint> for Waypoint[src]

impl StructuralPartialEq for Waypoint[src]

Auto Trait Implementations

impl RefUnwindSafe for Waypoint

impl Send for Waypoint

impl Sync for Waypoint

impl Unpin for Waypoint

impl UnwindSafe for Waypoint

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]