[−][src]Struct vrp_core::construction::heuristics::RouteState
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]
&self,
key: i32,
activity: &Activity
) -> Option<&T>
Gets value associated with key converted to given type.
pub fn get_activity_state_raw(
&self,
key: i32,
activity: &Activity
) -> Option<&StateValue>[src]
&self,
key: i32,
activity: &Activity
) -> Option<&StateValue>
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]
&mut self,
key: i32,
value: Arc<dyn Any + Send + Sync>
)
Puts value associated with key.
pub fn put_activity_state<T: Send + Sync + 'static>(
&mut self,
key: i32,
activity: &Activity,
value: T
)[src]
&mut self,
key: i32,
activity: &Activity,
value: T
)
Puts value associated with key and specific activity.
pub fn put_activity_state_raw(
&mut self,
key: i32,
activity: &Activity,
value: StateValue
)[src]
&mut self,
key: i32,
activity: &Activity,
value: StateValue
)
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<'a>(&'a self) -> impl Iterator<Item = i32> + 'a[src]
Returns all state keys.
pub fn sizes(&self) -> (usize, usize)[src]
Returns size route state storage.
Trait Implementations
impl Default for RouteState[src]
fn default() -> RouteState[src]
Auto Trait Implementations
impl !RefUnwindSafe for RouteState
impl Send for RouteState
impl Sync for RouteState
impl Unpin for RouteState
impl !UnwindSafe for RouteState
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,