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

pub struct RegistryContext { /* fields omitted */ }

Keeps track on how routes are used.

Implementations

impl RegistryContext[src]

pub fn new(registry: Registry) -> Self[src]

Creates a new instance of RouteRegistry.

pub fn new_with_modifier(registry: Registry, modifier: &RouteModifier) -> Self[src]

Creates a new instance of RouteRegistry using route context modifier.

pub fn resources(&self) -> &Registry[src]

Returns underlying registry.

pub fn next(&self) -> impl Iterator<Item = RouteContext> + '_[src]

Returns next route for insertion.

pub fn use_route(&mut self, route: &RouteContext) -> bool[src]

Sets this route as used. Returns whether the route was already marked as used in the registry.

pub fn free_route(&mut self, route: &RouteContext)[src]

Sets this route as unused. Returns whether the route was already unused in the registry.

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

Creates a deep copy of RegistryContext.

pub fn deep_slice(&self, filter: impl Fn(&Actor) -> bool) -> Self[src]

Creates a deep sliced copy of RegistryContext` keeping only specific actors data.

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> Pointable for T

type Init = T

The type for initializers.

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