struct KegState<T> {
pages: usize,
free: usize,
partial_slabs: VecDeque<NonNull<Slab<T>>>,
}Expand description
Mutable state of UmaKeg.
Fields§
§pages: usize§free: usize§partial_slabs: VecDeque<NonNull<Slab<T>>>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for KegState<T>
impl<T> !RefUnwindSafe for KegState<T>
impl<T> !Sync for KegState<T>
impl<T> Unpin for KegState<T>
impl<T> UnsafeUnpin for KegState<T>
impl<T> !UnwindSafe for KegState<T>
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