Skip to main content

StoreIntoIterator

Trait StoreIntoIterator 

Source
pub trait StoreIntoIterator<K, V>: IntoIterator<Item = (K, V)> { }
Expand description

Creates an iterator over the items of the store.

Implementors§

Source§

impl<K, V, T> StoreIntoIterator<K, V> for T
where T: IntoIterator<Item = (K, V)>,