arrayvec provides the typesArrayVec
andArrayString
: array-backed vector and string types, which store their contents inline.
The arrayvec package has the following cargo features:
std
no_std
instead.serde
array-sizes-33-128
,array-sizes-129-255
unstable-const-fn
ArrayVec::new
andArrayString::new
const fn
s,using the nightlyconst_fn
feature.This version of arrayvec requires Rust 1.36 or later.
ArrayString | A string with a fixed capacity. |
ArrayVec | A vector with a fixed capacity. |
CapacityError | Error value indicating insufficient capacity |
Drain | A draining iterator for |
IntoIter | By-value iterator for |
Array | Trait for fixed size arrays. |