1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Dynamic memory allocators and operators.

mod heap;
mod hold;
mod tag;

mod stow;
mod clone;

mod addr;
mod slab;
mod pack;
mod pool;

pub use self::heap::{Heap, HeapError};
pub use self::hold::{Hold, HoldScope, LocalHold, Holder, HoldError};
pub use self::tag::AllocTag;

pub use self::stow::{Stow, StowFrom, StowInto};
pub use self::clone::{TryClone, CloneIntoHold};

pub use self::addr::{AddrSpace, ExtentList};
pub use self::slab::Slab;
pub use self::pack::Pack;
pub use self::pool::Pool;