Expand description
An unsynchronized allocator.
Structs§
- Bump
- A bump allocator whose storage capacity and alignment is given by
T. - Chain
- A
Chainis a simple bump allocator, that draws it’s memory from another allocator. Chain allocators can be chained together usingChain::chain. - From
MemError - An error used when one could not re-use raw memory for a bump allocator.
- MemBump
- A dynamically sized allocation block in which any type can be allocated.