Struct google_maps::directions::response::leg::Leg[][src]

pub struct Leg {
    pub arrival_time: Option<TransitTime>,
    pub departure_time: Option<TransitTime>,
    pub distance: DirectionsDistance,
    pub duration: DirectionsDuration,
    pub duration_in_traffic: Option<DirectionsDuration>,
    pub end_address: String,
    pub end_location: LatLng,
    pub start_address: String,
    pub start_location: LatLng,
    pub steps: Vec<Step>,
}
Expand description

A single leg consisting of a set of steps in a DirectionsResult. Some fields in the leg may not be returned for all requests. Note that though this result is “JSON-like,” it is not strictly JSON, as it directly and indirectly includes LatLng objects.

Fields

arrival_time: Option<TransitTime>

An estimated arrival time for this leg. Only applicable for TravelMode::Transit requests.

departure_time: Option<TransitTime>

An estimated departure time for this leg. Only applicable for TravelMode::Transit requests.

distance: DirectionsDistance

The total distance covered by this leg. This property may be undefined as the distance may be unknown.

duration: DirectionsDuration

The total duration of this leg. This property may be undefined as the duration may be unknown.

duration_in_traffic: Option<DirectionsDuration>

The total duration of this leg, taking into account the traffic conditions indicated by the with_traffic_model() method. This property may be undefined as the duration may be unknown. Only available to Premium Plan customers.

end_address: String

The address of the destination of this leg.

end_location: LatLng

The Directions Service calculates directions between locations by using the nearest transportation option (usually a road) at the start and end locations. end_location indicates the actual geocoded destination, which may be different than the end_location of the last step if, for example, the road is not near the destination of this leg.

start_address: String

The address of the origin of this leg.

start_location: LatLng

The Directions Service calculates directions between locations by using the nearest transportation option (usually a road) at the start and end locations. start_location indicates the actual geocoded origin, which may be different than the start_location of the first step if, for example, the road is not near the origin of this leg.

steps: Vec<Step>

An array of Steps, each of which contains information about the individual steps in this leg.

Implementations

A helper function for destructuring (or serializing) the optional duration_in_traffic field. If the Duration struct is populated, this function will return the text field as a String. If the Duration struct is empty, this function will return None.

let duration_in_traffic_text = leg.get_duration_in_traffic_text();

A helper function for destructuring (or serializing) the optional duration_in_traffic field. If the Duration struct is populated, this function will return the value field as a time::Duration. If the Duration struct is empty, this function will return None.

let duration_in_traffic_value = leg.get_duration_in_traffic_value();

A helper function for destructuring (or serializing) the optional arrival_time field. If the Time struct is populated, this function will return the text field as a String. If the Time struct is empty, this function will return None.

let arrival_time_text = leg.get_arrival_time_text();

A helper function for destructuring (or serializing) the optional arrival_time field. If the Time struct is populated, this function will return the time_zone field as a String type. If the Time struct is empty, this function will return None.

let arrival_time_zone = leg.arrival_time_zone();

A helper function for destructuring (or serializing) the optional arrival_time field. If the Time struct is populated, this function will return the time field as a i64 UNIX timestamp. If the Time struct is empty, this function will return None.

let arrival_time_zone = leg.arrival_time_zone();

A helper function for destructuring (or serializing) the optional departure_time field. If the Time struct is populated, this function will return the text field as a String. If the Time struct is empty, this function will return None.

let departure_time_text = leg.get_departure_time_text();

A helper function for destructuring (or serializing) the optional departure_time field. If the Time struct is populated, this function will return the time_zone field as a String type. If the Time struct is empty, this function will return None.

let departure_time_zone = leg.departure_time_zone();

A helper function for destructuring (or serializing) the optional departure_time field. If the Time struct is populated, this function will return the time field as a i64 UNIX timestamp. If the Time struct is empty, this function will return None.

let departure_time_zone = leg.departure_time_zone();

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

Deserialize this value from the given Serde deserializer. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

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

Compare self to key and return true if they are equal.

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

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.

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