pub trait RawSpace {
type Key;
type Value;
// Required methods
fn get(&self, head: &Self::Key) -> Option<&Self::Value>;
fn get_mut(&mut self, head: &Self::Key) -> Option<&mut Self::Value>;
}Expand description
The RawSpace trait defines the basic interface for any compatible stores used within
the crate.