Struct googapis::google::maps::routes::v1::ComputeCustomRoutesRequest[][src]

pub struct ComputeCustomRoutesRequest {
    pub origin: Option<Waypoint>,
    pub destination: Option<Waypoint>,
    pub intermediates: Vec<Waypoint>,
    pub travel_mode: i32,
    pub routing_preference: i32,
    pub polyline_quality: i32,
    pub polyline_encoding: i32,
    pub departure_time: Option<Timestamp>,
    pub route_modifiers: Option<RouteModifiers>,
    pub route_objective: Option<RouteObjective>,
    pub language_code: String,
    pub units: i32,
}
Expand description

ComputeCustomRoutes request message.

Fields

origin: Option<Waypoint>

Required. Origin waypoint.

destination: Option<Waypoint>

Required. Destination waypoint.

intermediates: Vec<Waypoint>

Optional. A set of waypoints along the route (excluding terminal points), for either stopping at or passing by. Up to 25 intermediate waypoints are supported.

travel_mode: i32

Optional. Specifies the mode of transportation. Only DRIVE is supported now.

routing_preference: i32

Optional. Specifies how to compute the route. The server attempts to use the selected routing preference to compute the route. If the routing preference results in an error or an extra long latency, then an error is returned. In the future, we might implement a fallback mechanism to use a different option when the preferred option does not give a valid result. You can specify this option only when the travel_mode is DRIVE or TWO_WHEELER, otherwise the request fails.

polyline_quality: i32

Optional. Specifies your preference for the quality of the polyline.

polyline_encoding: i32

Optional. Specifies the preferred encoding for the polyline.

departure_time: Option<Timestamp>

Optional. The departure time. If you don’t set this value, then this value defaults to the time that you made the request. If you set this value to a time that has already occurred, then the request fails.

route_modifiers: Option<RouteModifiers>

Optional. A set of conditions to satisfy that affect the way routes are calculated.

route_objective: Option<RouteObjective>

Required. A route objective to optimize for.

language_code: String

Optional. The BCP-47 language code, such as “en-US” or “sr-Latn”. For more information, see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier. See Language Support for the list of supported languages. When you don’t provide this value, the display language is inferred from the location of the route request.

units: i32

Optional. Specifies the units of measure for the display fields. This includes the instruction field in NavigationInstruction. The units of measure used for the route, leg, step distance, and duration are not affected by this value. If you don’t provide this value, then the display units are inferred from the location of the request.

Implementations

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

Sets travel_mode to the provided enum value.

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

Sets routing_preference to the provided enum value.

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

Sets polyline_quality to the provided enum value.

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

Sets units to the provided enum value.

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

Sets polyline_encoding to the provided enum value.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Wrap the input message T in a tonic::Request

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more