Expand description
A fixed capacity Vec
.
Structs§
- Drain
- A draining iterator for
Vec
. - Into
Iter - An iterator that moves out of an
Vec
. - VecInner
- Base struct for
Vec
andVecView
, generic over theVecStorage
.
Traits§
- VecStorage
- Trait defining how data for a container is stored.
Type Aliases§
- Owned
VecStorage - Implementation of
VecStorage
that stores the data in an array[T; N]
whose size is known at compile time. - Vec
- A fixed capacity
Vec
. - VecView
- A
Vec
with dynamic capacity - View
VecStorage - Implementation of
VecStorage
that stores the data in an unsized[T]
.