pub trait StoreBulkMut<K, V>: StoreMut<K, V> {
// Required methods
fn lm_retain<F>(&mut self, predicate: F)
where F: FnMut(&K, &V) -> bool;
fn lm_extend<I>(&mut self, other: I)
where I: IntoIterator<Item = (K, V)>;
}Required Methods§
Sourcefn lm_extend<I>(&mut self, other: I)where
I: IntoIterator<Item = (K, V)>,
fn lm_extend<I>(&mut self, other: I)where
I: IntoIterator<Item = (K, V)>,
Extends this store with items from an iterator.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.