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
VecandVecView, generic over theVecStorage.
Traits§
- VecStorage
- Trait defining how data for a container is stored.
Type Aliases§
- Owned
VecStorage - Implementation of
VecStoragethat stores the data in an array[T; N]whose size is known at compile time. - Vec
- A fixed capacity
Vec. - VecView
- A
Vecwith dynamic capacity - View
VecStorage - Implementation of
VecStoragethat stores the data in an unsized[T].