Trait gear_common::storage::IterableMap
source · pub trait IterableMap<Item> {
type DrainIter: Iterator<Item = Item>;
type Iter: Iterator<Item = Item>;
// Required methods
fn drain() -> Self::DrainIter;
fn iter() -> Self::Iter;
}
Expand description
Represents iterable logic for single key maps (Key -> Value).
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.