[−][src]Module alloc_compose::region::raw
Region implementations which are not bound by a lifetime.
In comparison to the region module, this module contains the raw counterparts. They don't
require a lifetime bound but are unsafe to construct, as the user has to ensure, that the
allocator outlives the memory.
It is highly encouraged to use the safe counterparts whenever possible.
Structs
| RawIntrusiveRegion | An intrusive region allocator, which stores the current posision in the provided memory. |
| RawRegion | A stack allocator over an user-defined region of memory. |
| RawSharedRegion | alloc |