[][src]Enum vrp_core::models::common::TimeSpan

pub enum TimeSpan {
    Window(TimeWindow),
    Offset(TimeOffset),
}

A enum for various time definitions.

Variants

Window(TimeWindow)

A time window variant.

Offset(TimeOffset)

A time offset variant.

Implementations

impl TimeSpan[src]

pub fn to_time_window(&self, date: Timestamp) -> TimeWindow[src]

Converts given time span into time window.

pub fn intersects(&self, date: Timestamp, other: &TimeWindow) -> bool[src]

Checks that this time span intersects with given time windows.

pub fn as_time_window(&self) -> Option<TimeWindow>[src]

If time span is time window, then return it. Otherwise, return None.

Trait Implementations

impl Clone for TimeSpan[src]

impl Debug for TimeSpan[src]

Auto Trait Implementations

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> 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>,