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

pub struct RouteState { /* fields omitted */ }

Provides the way to associate arbitrary data within route and activity.

Implementations

impl RouteState[src]

pub fn new_with_sizes(sizes: (usize, usize)) -> RouteState[src]

Creates a new RouteState using giving capacities.

pub fn get_route_state<T: Send + Sync + 'static>(&self, key: i32) -> Option<&T>[src]

Gets value associated with key converted to given type.

pub fn get_route_state_raw(&self, key: i32) -> Option<&StateValue>[src]

Gets value associated with key.

pub fn get_activity_state<T: Send + Sync + 'static>(
    &self,
    key: i32,
    activity: &Activity
) -> Option<&T>
[src]

Gets value associated with key converted to given type.

pub fn get_activity_state_raw(
    &self,
    key: i32,
    activity: &Activity
) -> Option<&StateValue>
[src]

Gets value associated with key.

pub fn put_route_state<T: Send + Sync + 'static>(&mut self, key: i32, value: T)[src]

Puts value associated with key.

pub fn put_route_state_raw(
    &mut self,
    key: i32,
    value: Arc<dyn Any + Send + Sync>
)
[src]

Puts value associated with key.

pub fn put_activity_state<T: Send + Sync + 'static>(
    &mut self,
    key: i32,
    activity: &Activity,
    value: T
)
[src]

Puts value associated with key and specific activity.

pub fn put_activity_state_raw(
    &mut self,
    key: i32,
    activity: &Activity,
    value: StateValue
)
[src]

Puts value associated with key and specific activity.

pub fn remove_activity_states(&mut self, activity: &Activity)[src]

Removes all activity states for given activity.

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

Returns all state keys.

pub fn sizes(&self) -> (usize, usize)[src]

Returns size route state storage.

pub fn clear(&mut self)[src]

Clear all states.

Trait Implementations

impl Default for RouteState[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> 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>,