pub trait FromKeyedIterator<K, V> {
// Required method
fn from_keyed_iter<I: Iterator<Item = (K, V)>>(_: I) -> Self;
}Expand description
Conversion from an Iterator of key-value pairs.
Required Methods§
Sourcefn from_keyed_iter<I: Iterator<Item = (K, V)>>(_: I) -> Self
fn from_keyed_iter<I: Iterator<Item = (K, V)>>(_: I) -> Self
Build a container with groups of elements from an external 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.