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