pub trait IterableMap<K: Pod, V> {
    fn map(&self) -> &Map;
    fn get(&self, key: &K) -> Result<V, MapError>;
}
Expand description

An iterable map

Required Methods

Get a generic map handle

Get the value for the provided key

Implementors