framealloc 0.11.1

Intent-aware, thread-smart memory allocation for Rust game engines
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Allocation backends.
//!
//! This module contains the core allocator implementations.
//! **These are the only modules that should contain `unsafe` code.**

pub(crate) mod deferred;
pub(crate) mod frame;
pub(crate) mod handles;
pub(crate) mod heap;
pub(crate) mod slab;
pub(crate) mod streaming;