[][src]Crate staticvec

Macros

staticvec

Creates a new StaticVec from a vec!-style pseudo-slice. The newly created StaticVec will have a capacity and length exactly equal to the number of elements in the slice. The "array-like" [value; N] syntax is also supported for types that implement Copy.

Structs

StaticVec

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

StaticVecIterConst

Similar to Iter, but specifically implemented with StaticVecs in mind.

StaticVecIterMut

Similar to IterMut, but specifically implemented with StaticVecs in mind.