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.

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§

StackArrayString
A stack-allocated array of small strings.