Struct google_api_proto::google::maps::routeoptimization::v1::vehicle::DurationLimit
source · pub struct DurationLimit {
pub max_duration: Option<Duration>,
pub soft_max_duration: Option<Duration>,
pub cost_per_hour_after_soft_max: Option<f64>,
pub quadratic_soft_max_duration: Option<Duration>,
pub cost_per_square_hour_after_quadratic_soft_max: Option<f64>,
}
Expand description
A limit defining a maximum duration of the route of a vehicle. It can be either hard or soft.
When a soft limit field is defined, both the soft max threshold and its associated cost must be defined together.
Fields§
§max_duration: Option<Duration>
A hard limit constraining the duration to be at most max_duration.
soft_max_duration: Option<Duration>
A soft limit not enforcing a maximum duration limit, but when violated makes the route incur a cost. This cost adds up to other costs defined in the model, with the same unit.
If defined, soft_max_duration
must be nonnegative. If max_duration is
also defined, soft_max_duration
must be less than max_duration.
cost_per_hour_after_soft_max: Option<f64>
Cost per hour incurred if the soft_max_duration
threshold is violated.
The additional cost is 0 if the duration is under the threshold,
otherwise the cost depends on the duration as follows:
cost_per_hour_after_soft_max * (duration - soft_max_duration)
The cost must be nonnegative.
quadratic_soft_max_duration: Option<Duration>
A soft limit not enforcing a maximum duration limit, but when violated makes the route incur a cost, quadratic in the duration. This cost adds up to other costs defined in the model, with the same unit.
If defined, quadratic_soft_max_duration
must be nonnegative. If
max_duration
is also defined, quadratic_soft_max_duration
must be
less than max_duration
, and the difference must be no larger than one
day:
`max_duration - quadratic_soft_max_duration <= 86400 seconds`
cost_per_square_hour_after_quadratic_soft_max: Option<f64>
Cost per square hour incurred if the
quadratic_soft_max_duration
threshold is violated.
The additional cost is 0 if the duration is under the threshold, otherwise the cost depends on the duration as follows:
cost_per_square_hour_after_quadratic_soft_max *
(duration - quadratic_soft_max_duration)^2
The cost must be nonnegative.
Implementations§
source§impl DurationLimit
impl DurationLimit
sourcepub fn cost_per_hour_after_soft_max(&self) -> f64
pub fn cost_per_hour_after_soft_max(&self) -> f64
Returns the value of cost_per_hour_after_soft_max
, or the default value if cost_per_hour_after_soft_max
is unset.
sourcepub fn cost_per_square_hour_after_quadratic_soft_max(&self) -> f64
pub fn cost_per_square_hour_after_quadratic_soft_max(&self) -> f64
Returns the value of cost_per_square_hour_after_quadratic_soft_max
, or the default value if cost_per_square_hour_after_quadratic_soft_max
is unset.
Trait Implementations§
source§impl Clone for DurationLimit
impl Clone for DurationLimit
source§fn clone(&self) -> DurationLimit
fn clone(&self) -> DurationLimit
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DurationLimit
impl Debug for DurationLimit
source§impl Default for DurationLimit
impl Default for DurationLimit
source§impl Message for DurationLimit
impl Message for DurationLimit
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 DurationLimit
impl PartialEq for DurationLimit
source§fn eq(&self, other: &DurationLimit) -> bool
fn eq(&self, other: &DurationLimit) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for DurationLimit
impl StructuralPartialEq for DurationLimit
Auto Trait Implementations§
impl Freeze for DurationLimit
impl RefUnwindSafe for DurationLimit
impl Send for DurationLimit
impl Sync for DurationLimit
impl Unpin for DurationLimit
impl UnwindSafe for DurationLimit
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