[−][src]Trait vrp_core::models::common::ValueDimension
A trait to return arbitrary typed value by its key.
Required methods
pub fn get_value<T: 'static>(&self, key: &str) -> Option<&T>[src]
Gets value from dimension with given key.
pub fn set_value<T: 'static + Sync + Send>(&mut self, key: &str, value: T)[src]
Sets value in dimension with given key and value.