pub unsafe trait RegionalAllocator: Allocator {
    type Region: Region;
}
Expand description

An Allocator that allocates inside a single contiguous memory region.

Safety

The pointers returned from a RegionalAllocator’s Allocator implementation must always be contained in its associated Region.

Required Associated Types

The region type for this allocator.

Implementors