pub struct StackPool { /* private fields */ }
Expand description
Pool-based allocator for thread stacks.
This allocator maintains separate free lists for each stack size class to minimize fragmentation and allocation overhead.
Implementations§
Auto Trait Implementations§
impl !Freeze for StackPool
impl !RefUnwindSafe for StackPool
impl Send for StackPool
impl Sync for StackPool
impl Unpin for StackPool
impl UnwindSafe for StackPool
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