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.
Re-exports§
pub use crate::stack_string::StackString;pub use crate::stack_vec::StackVec;
Modules§
- 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.