pub trait PlainCollection: IntoIterator { }Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
impl<K, V> PlainCollection for BTreeMap<K, V>
impl<K, V> PlainCollection for IndexMap<K, V>
Available on crate feature
indexmap only.impl<T, const N: usize> PlainCollection for [T; N]
impl<T> PlainCollection for BTreeSet<T>
impl<T> PlainCollection for IndexSet<T>
Available on crate feature
indexmap only.