Skip to main content

VecLike

Trait VecLike 

Source
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§

Source§

impl<K, V> VecLike for BTreeMap<K, V>

Source§

impl<K, V> VecLike for IndexMap<K, V>

Available on crate feature indexmap only.
Source§

impl<T, const N: usize> VecLike for [T; N]

Source§

impl<T> VecLike for BTreeSet<T>

Source§

impl<T> VecLike for IndexSet<T>

Available on crate feature indexmap only.
Source§

impl<T> VecLike for Vec<T>

Source§

impl<T> VecLike for VecDeque<T>

Implementors§