VisitRequest

Struct VisitRequest 

Source
#[non_exhaustive]
pub struct VisitRequest { pub arrival_location: Option<LatLng>, pub arrival_waypoint: Option<Waypoint>, pub departure_location: Option<LatLng>, pub departure_waypoint: Option<Waypoint>, pub tags: Vec<String>, pub time_windows: Vec<TimeWindow>, pub duration: Option<Duration>, pub cost: f64, pub load_demands: HashMap<String, Load>, pub visit_types: Vec<String>, pub label: String, pub demands: Vec<CapacityQuantity>, /* private fields */ }
Expand description

Request for a visit which can be done by a vehicle: it has a geo-location (or two, see below), opening and closing times represented by time windows, and a service duration time (time spent by the vehicle once it has arrived to pickup or drop off goods).

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§arrival_location: Option<LatLng>

The geo-location where the vehicle arrives when performing this VisitRequest. If the shipment model has duration distance matrices, arrival_location must not be specified.

§arrival_waypoint: Option<Waypoint>

The waypoint where the vehicle arrives when performing this VisitRequest. If the shipment model has duration distance matrices, arrival_waypoint must not be specified.

§departure_location: Option<LatLng>

The geo-location where the vehicle departs after completing this VisitRequest. Can be omitted if it is the same as arrival_location. If the shipment model has duration distance matrices, departure_location must not be specified.

§departure_waypoint: Option<Waypoint>

The waypoint where the vehicle departs after completing this VisitRequest. Can be omitted if it is the same as arrival_waypoint. If the shipment model has duration distance matrices, departure_waypoint must not be specified.

§tags: Vec<String>

Specifies tags attached to the visit request. Empty or duplicate strings are not allowed.

§time_windows: Vec<TimeWindow>

Time windows which constrain the arrival time at a visit. Note that a vehicle may depart outside of the arrival time window, i.e. arrival time + duration do not need to be inside a time window. This can result in waiting time if the vehicle arrives before TimeWindow.start_time.

The absence of TimeWindow means that the vehicle can perform this visit at any time.

Time windows must be disjoint, i.e. no time window must overlap with or be adjacent to another, and they must be in increasing order.

cost_per_hour_after_soft_end_time and soft_end_time can only be set if there is a single time window.

§duration: Option<Duration>

Duration of the visit, i.e. time spent by the vehicle between arrival and departure (to be added to the possible waiting time; see time_windows).

§cost: f64

Cost to service this visit request on a vehicle route. This can be used to pay different costs for each alternative pickup or delivery of a shipment. This cost must be in the same unit as Shipment.penalty_cost and must not be negative.

§load_demands: HashMap<String, Load>

Load demands of this visit request. This is just like Shipment.load_demands field, except that it only applies to this VisitRequest instead of the whole Shipment. The demands listed here are added to the demands listed in Shipment.load_demands.

§visit_types: Vec<String>

Specifies the types of the visit. This may be used to allocate additional time required for a vehicle to complete this visit (see Vehicle.extra_visit_duration_for_visit_type).

A type can only appear once.

§label: String

Specifies a label for this VisitRequest. This label is reported in the response as visit_label in the corresponding ShipmentRoute.Visit.

§demands: Vec<CapacityQuantity>
👎Deprecated

Deprecated: Use VisitRequest.load_demands instead.

Implementations§

Source§

impl VisitRequest

Source

pub fn new() -> Self

Source

pub fn set_arrival_location<T>(self, v: T) -> Self
where T: Into<LatLng>,

Sets the value of arrival_location.

Source

pub fn set_or_clear_arrival_location<T>(self, v: Option<T>) -> Self
where T: Into<LatLng>,

Sets or clears the value of arrival_location.

Source

pub fn set_arrival_waypoint<T>(self, v: T) -> Self
where T: Into<Waypoint>,

Sets the value of arrival_waypoint.

Source

pub fn set_or_clear_arrival_waypoint<T>(self, v: Option<T>) -> Self
where T: Into<Waypoint>,

Sets or clears the value of arrival_waypoint.

Source

pub fn set_departure_location<T>(self, v: T) -> Self
where T: Into<LatLng>,

Sets the value of departure_location.

Source

pub fn set_or_clear_departure_location<T>(self, v: Option<T>) -> Self
where T: Into<LatLng>,

Sets or clears the value of departure_location.

Source

pub fn set_departure_waypoint<T>(self, v: T) -> Self
where T: Into<Waypoint>,

Sets the value of departure_waypoint.

Source

pub fn set_or_clear_departure_waypoint<T>(self, v: Option<T>) -> Self
where T: Into<Waypoint>,

Sets or clears the value of departure_waypoint.

Source

pub fn set_tags<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<String>,

Sets the value of tags.

Source

pub fn set_time_windows<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<TimeWindow>,

Sets the value of time_windows.

Source

pub fn set_duration<T>(self, v: T) -> Self
where T: Into<Duration>,

Sets the value of duration.

Source

pub fn set_or_clear_duration<T>(self, v: Option<T>) -> Self
where T: Into<Duration>,

Sets or clears the value of duration.

Source

pub fn set_cost<T: Into<f64>>(self, v: T) -> Self

Sets the value of cost.

Source

pub fn set_load_demands<T, K, V>(self, v: T) -> Self
where T: IntoIterator<Item = (K, V)>, K: Into<String>, V: Into<Load>,

Sets the value of load_demands.

Source

pub fn set_visit_types<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<String>,

Sets the value of visit_types.

Source

pub fn set_label<T: Into<String>>(self, v: T) -> Self

Sets the value of label.

Source

pub fn set_demands<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<CapacityQuantity>,

👎Deprecated

Sets the value of demands.

Trait Implementations§

Source§

impl Clone for VisitRequest

Source§

fn clone(&self) -> VisitRequest

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for VisitRequest

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for VisitRequest

Source§

fn default() -> VisitRequest

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

impl Message for VisitRequest

Source§

fn typename() -> &'static str

The typename of this message.
Source§

impl PartialEq for VisitRequest

Source§

fn eq(&self, other: &VisitRequest) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for VisitRequest

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,