pub struct Dummy;
Expand description
A dummy allocator that does not perform any actual allocation or deallocation. This is useful for handling cases where no memory allocation is required or should be allowed.
Trait Implementations§
Source§impl GlobalAlloc for Dummy
Implementing GlobalAlloc
for the Dummy
allocator.
impl GlobalAlloc for Dummy
Implementing GlobalAlloc
for the Dummy
allocator.
This allocator returns null_mut()
for allocations and panics when attempting to deallocate.