mmap-alloc
==========
[](https://crates.io/crates/mmap-alloc)
[](https://docs.rs/mmap-alloc)
An allocator that is backed by directly mapping memory pages.
The `MapAlloc` type defined by this crate implements the `Alloc` and `ObjectAlloc` traits by directly mapping memory pages from the kernel (`mmap`/`munmap` on POSIX systems and `VirtualAlloc`/`VirtualFree` on Windows). It also allows pages to be committed or uncommitted.