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