Trait situ::alloc::RawRegionalAllocator
source · [−]pub unsafe trait RawRegionalAllocator: RawAllocator {
type Region: Region;
}
Expand description
A RawAllocator
that allocates inside a single contiguous memory region.
Safety
The pointers returned from a RawRegionalAllocator
’s RawAllocator
implementation must always be contained in its associated Region
.