Skip to main content

Module dynamic_allocator

Module dynamic_allocator 

Structsยง

Container ๐Ÿ”’
Structure used to encapsulate the object on the heap
DynamicReusableAllocator
A dynamic reusable memory allocator which uses a RwLock<VecDeque> to store the empty available memory locations. It will attempt to reuse any memory blocks already allocated, otherwise it will do an additional allocation.
GCArc
A reference counted smart pointer that allows shared ownership of a value of type T, allocated with a crate::GCAllocator.