[][src]Crate staticvec

Macros

staticvec

Creates a new StaticVec from a vec!-style macro-slice. The newly created StaticVec will have a capacity and length exactly equal to the number of elements, if any, in the slice.

Structs

StaticVec

A Vec-like struct (mostly directly API-compatible where it can be) implemented with const generics around a static array of fixed N capacity.