pub struct ChunkAllocator { /* private fields */ }Expand description
Memory chunk allocator for bounded allocations.
Manages a pool of fixed-size chunks to avoid large contiguous allocations.
Implementations§
Auto Trait Implementations§
impl Freeze for ChunkAllocator
impl RefUnwindSafe for ChunkAllocator
impl Send for ChunkAllocator
impl Sync for ChunkAllocator
impl Unpin for ChunkAllocator
impl UnsafeUnpin for ChunkAllocator
impl UnwindSafe for ChunkAllocator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more