No-allocation vector
Getting Started
This Rust library provides a no-allocation vector implementation. This vector is designed to work with a fixed maximum length, avoiding heap allocations (aka putting the vector on the stack) and making it suitable for embedded systems or other environments where dynamic memory allocation is not suitable.
Usage
use Vec;
const MAX_LENGTH: usize = 10;
let mut vec = Vec::new;
vec.push.unwrap;
vec.push.unwrap;
assert_eq!;
assert_eq!;
assert_eq!;