[][src]Crate staticvec

Macros

staticvec

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

Structs

StaticVec

A Vec-like struct (directly API-compatible where it can be at least as far as function signatures go) implemented with const generics around a static array of fixed N capacity.

StaticVecIterConst

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

StaticVecIterMut

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