Expand description
stack_collections: Stack-allocated collections for Rust
Provides StackString, StackVec, and StackArrayString.
These are fixed-capacity, stack-allocated collections designed for
no_std environments, zero heap allocations, predictable memory usage,
and deterministic performance.
Structs§
- Into
Iter - Owning iterator for StackVec: supports double-ended iteration and is exact-size.
- Stack
String - A UTF-8–encoded, stack-allocated, fixed-capacity string.
- Stack
Vec - A stack-allocated vector with a fixed capacity.
Type Aliases§
- Stack
Array String - A stack-allocated array of small strings.