Module dynamic_allocator
Structsยง
- Container ๐
- Structure used to encapsulate the object on the heap
- Dynamic
Reusable Allocator - 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.