[][src]Struct vrp_core::construction::heuristics::RouteContext

pub struct RouteContext {
    pub route: Arc<Route>,
    pub state: Arc<RouteState>,
}

Specifies insertion context for route.

Fields

route: Arc<Route>

Used route.

state: Arc<RouteState>

Insertion state.

Implementations

impl RouteContext[src]

pub fn new(actor: Arc<Actor>) -> Self[src]

Creates a new instance of RouteContext.

pub fn deep_copy(&self) -> Self[src]

Creates a deep copy of RouteContext.

pub fn get_route_cost(&self) -> Cost[src]

Gets route cost.

pub fn as_mut(&mut self) -> (&mut Route, &mut RouteState)[src]

Unwraps given RouteContext as pair of mutable references.

pub fn route_mut(&mut self) -> &mut Route[src]

Returns mutable reference to used Route.

pub fn state_mut(&mut self) -> &mut RouteState[src]

Returns mutable reference to used RouteState.

Trait Implementations

impl Clone for RouteContext[src]

impl Eq for RouteContext[src]

impl PartialEq<RouteContext> for RouteContext[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>,