Crate stack_collections

Crate stack_collections 

Source
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§

IntoIter
Owning iterator for StackVec: supports double-ended iteration and is exact-size.
StackString
A UTF-8–encoded, stack-allocated, fixed-capacity string.
StackVec
A stack-allocated vector with a fixed capacity.

Type Aliases§

StackArrayString
A stack-allocated array of small strings.