Implements dynamically sized types over stack allocated arrays.
- The
Vector
trait exposes a generic trait forVec
-like operations. ArrayVec
implements aVector
interface over a fixed-size array.SmallVec
abstracts over a stack allocatedArrayVec
, and falls back to a heapVec
upon overflow.SmallDST
holds a DST such as a closure or other types in aVector
.