[][src]Struct vrp_pragmatic::format::solution::Stop

pub struct Stop {
    pub location: Location,
    pub time: Schedule,
    pub distance: i64,
    pub load: Vec<i32>,
    pub activities: Vec<Activity>,
}

A stop is a place where vehicle is supposed to be parked.

Fields

location: Location

Stop location.

time: Schedule

Stop schedule.

distance: i64

Distance traveled since departure from start.

load: Vec<i32>

Vehicle load after departure from this stop.

activities: Vec<Activity>

Activities performed at the stop.

Trait Implementations

impl Clone for Stop[src]

impl Debug for Stop[src]

impl<'de> Deserialize<'de> for Stop[src]

impl PartialEq<Stop> for Stop[src]

impl Serialize for Stop[src]

impl StructuralPartialEq for Stop[src]

Auto Trait Implementations

impl RefUnwindSafe for Stop

impl Send for Stop

impl Sync for Stop

impl Unpin for Stop

impl UnwindSafe for Stop

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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