pub const MAX_ARRAY_SIZE: usize = 4;
Expand description
Maximum slots of fixed-size storage for a VecArray
.
Defaults to 4, which should be enough for many cases and is a good balance between
memory consumption (for the fixed-size array) and reduced allocations.
ยงUsage Considerations
To alter this size right now, unfortunately you must clone this repo and modify the code directly.
This cannot be avoided until constant generics land in Rust.