pub trait ValueDimension {
    fn get_value<T: 'static>(&self, key: &str) -> Option<&T>;
    fn set_value<T: 'static + Sync + Send>(&mut self, key: &str, value: T);
}
Expand description

A trait to return arbitrary typed value by its key.

Required Methods

Gets value from dimension with given key.

Sets value in dimension with given key and value.

Implementors