pub trait IterableMap<K: Pod, V> {
// Required methods
fn map(&self) -> &MapData;
fn get(&self, key: &K) -> Result<V, MapError>;
}Expand description
An iterable map
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".