Expand description
This module provides a simple allocator. One implementation is the BestFitAllocator, which uses the best fit strategy.
Modules§
Constants§
Traits§
- Allocator
- Allocator trait that provides a way to allocate and free memory.
Normally you don’t need to use this directly, rather use the
boxed::Boxtype.