Module alloc

Module alloc 

Source
Expand description

This module provides a simple allocator. One implementation is the BestFitAllocator, which uses the best fit strategy.

Modules§

bestfit

Constants§

MAX_ADDR

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::Box type.