Struct google_api_proto::google::cloud::optimization::v1::shipment_route::TravelStep
source · pub struct TravelStep {
pub duration: Option<Duration>,
pub distance_meters: f64,
pub traffic_info_unavailable: bool,
pub route_polyline: Option<EncodedPolyline>,
}
Expand description
Deprecated: Use
[ShipmentRoute.Transition][google.cloud.optimization.v1.ShipmentRoute.Transition]
instead. Travel between each visit along the route: from the vehicle’s
start_location
to the first visit’s arrival_location
, then from the
first visit’s departure_location
to the second visit’s
arrival_location
, and so on until the vehicle’s end_location
. This
accounts only for the actual travel between visits, not counting the
waiting time, the time spent performing a visit, nor the distance covered
during a visit.
Invariant: travel_steps_size() == visits_size() + 1
.
If the vehicle does not have a start_ and/or end_location, the corresponding travel metrics are 0 and/or empty.
Fields§
§duration: Option<Duration>
Duration of the travel step.
distance_meters: f64
Distance traveled during the step.
When traffic is requested via [OptimizeToursRequest.consider_road_traffic][google.cloud.optimization.v1.OptimizeToursRequest.consider_road_traffic], and the traffic info couldn’t be retrieved for a TravelStep, this boolean is set to true. This may be temporary (rare hiccup in the realtime traffic servers) or permanent (no data for this location).
route_polyline: Option<EncodedPolyline>
The encoded polyline representation of the route followed during the step.
This field is only populated if [OptimizeToursRequest.populate_travel_step_polylines][google.cloud.optimization.v1.OptimizeToursRequest.populate_travel_step_polylines] is set to true.
Trait Implementations§
source§impl Clone for TravelStep
impl Clone for TravelStep
source§fn clone(&self) -> TravelStep
fn clone(&self) -> TravelStep
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TravelStep
impl Debug for TravelStep
source§impl Default for TravelStep
impl Default for TravelStep
source§impl Message for TravelStep
impl Message for TravelStep
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for TravelStep
impl PartialEq for TravelStep
source§fn eq(&self, other: &TravelStep) -> bool
fn eq(&self, other: &TravelStep) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TravelStep
Auto Trait Implementations§
impl Freeze for TravelStep
impl RefUnwindSafe for TravelStep
impl Send for TravelStep
impl Sync for TravelStep
impl Unpin for TravelStep
impl UnwindSafe for TravelStep
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request