I’d like to start writing new projects in Rust and I’d like to continue to use this approach to memory management!
https://github.com/rust-lang/wg-allocators
https://docs.rs/bumpalo/latest/bumpalo/#nightly-rust-allocat...
use bumpalo::Bump; let bump = Bump::new(); let mut v = Vec::new_in(&bump); v.push(0); v.push(1); v.push(2);
I’d like to start writing new projects in Rust and I’d like to continue to use this approach to memory management!