Skip to main contentCrate kalloc
Source - AllocError
- Error type for allocation failures.
- Box
- A custom Box type appropriate for fallible allocation.
- DefaultAllocator
- Default allocator that uses the global allocator (userspace) or kernel allocator.
- NoOpAllocator
- An allocator that does not perform any actual allocation or deallocation.
- Allocator
- Trait for allocators used by Box and other collections.
- alloc⚠
- Fallible allocation using kernel malloc.
- alloc_zeroed⚠
- Fallible zeroed allocation using kernel calloc.
- dealloc⚠
- Fallible deallocation using kernel free.
- realloc⚠
- Fallible reallocation using kernel realloc.