Expand description
A crate for FixedArray and FixedString, types to provide a smaller memory footprint in exchange for:
- Immutablity,
FixedArrayandFixedStringcannot be mutated without converting back to their expanded forms. - Maximum length,
FixedArrayandFixedStringhave a length cap ofLenT::MAXelements.
These types provide cheap conversions to Vec and String, to make up for most of these downsides, but it is
still not recommended to use these collections for mutated values as you will see a performance downside.
These can be thought of as Box<[T]> and Box<str>, except the length is denoted as LenT, by default u32.
§Features
nightly: Speeds upFixedString::lenfor small strings, usingportable_simd.serde: Providesserdeimplementations forFixedArrayandFixedString.typesize: Providestypesizeimplementations forFixedArrayandFixedString.
§MSRV
The Minimum Supported Rust Version of this crate is 1.70.
It is considered a breaking change to raise this.
Structs§
- Fixed
Array - A fixed size array with length provided at creation denoted in a
ValidLength, by defaultu32. - Fixed
String - A fixed size String with length provided at creation denoted in
ValidLength, by defaultu32.
Traits§
- Truncating
Into - A sealed helper trait for calling
FixedArray<T>::from_vec_truncorFixedString::from_string_trunc. - Valid
Length - A sealed trait to represent valid lengths for a
FixedArray.