stack
Implements dynamically sized types over stack allocated arrays.
- The
Vectortrait exposes a generic trait forVec-like operations. ArrayVecimplements aVectorinterface over a fixed-size array.SmallVecabstracts over a stack allocatedArrayVec, and falls back to a heapVecupon overflow.SmallDSTholds a DST such as a closure or other types in aVector.