[][src]Module storagevec::svec

Contains the StorageVec; a feature-gated vector structure that alternates between stack and heap storage depending on the alloc feature.

Structs

StorageVec

A list-like object that will either use the tinyvec ArrayVec, the standard library Vec, or the tinyvec TinyVec as a backing implementation. It will use the alloc and stack features to control this.

StorageVecIterator

An owning iterator for the StorageVec. Returned by StorageVec::into_iter.