pub trait VecLike: PlainCollection { }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> VecLike for BTreeMap<K, V>
impl<K, V> VecLike for IndexMap<K, V>
Available on crate feature
indexmap only.impl<T, const N: usize> VecLike for [T; N]
impl<T> VecLike for BTreeSet<T>
impl<T> VecLike for IndexSet<T>
Available on crate feature
indexmap only.