memkit 0.1.0-beta.1

Deterministic, intent-driven memory allocation for systems requiring predictable performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Container types for managed allocations.

mod frame_box;
mod frame_slice;
mod frame_vec;
mod pool_box;
mod heap_box;

pub use frame_box::MkFrameBox;
pub use frame_slice::MkFrameSlice;
pub use frame_vec::MkFrameVec;
pub use pool_box::MkPoolBox;
pub use heap_box::MkHeapBox;