pub trait ArenaExt: Allocator { // Required method unsafe fn alloc_zeroed(&self, layout: Layout) -> Option<NonNull<u8>>; }
Extension trait that adds zeroed allocation to arena-like allocators.
Allocates a block of memory and fills it with zeroes before returning.
layout.size()
alloc