pub struct LockedHeap(_);
Creates an empty heap. All allocate calls will return None.
Creates a new heap with the given bottom and size. The bottom address must be valid
and the memory in the [heap_bottom, heap_bottom + heap_size) range must not be used for
anything else. This function is unsafe because it can cause undefined behavior if the
given address is invalid.
The resulting type after dereferencing.
Allocate memory as described by the given layout. Read more
Deallocate the block of memory at the given ptr pointer with the given layout. Read more
Behaves like alloc, but also ensures that the contents
are set to zero before being returned. Read more
unsafe fn realloc(
&self,
ptr: *mut u8,
layout: Layout,
new_size: usize
) -> *mut u81.28.0[src]
Shrink or grow a block of memory to the given new_size.
The block is described by the given ptr pointer and layout. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.