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