pub trait Vec<T>: Stack<T> + Index<usize, Output = T> { }Expand description
Immutable array data structure (conventionally nammed “Vec”).
A Vec is essentially a Stack indexable by a usize.
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.