pub struct AllocationBTree {
pub lookups: u32,
pub compares: u32,
pub inserts: u32,
pub deletes: u32,
}
Fields§
§lookups: u32
Number of lookup operations in XFS filesystem allocation btrees.
compares: u32
Number of compares in XFS filesystem allocation btree lookups.
inserts: u32
Number of extent records inserted into XFS filesystem allocation btrees.
deletes: u32
Number of extent records deleted from XFS filesystem allocation btrees.
Auto Trait Implementations§
impl Freeze for AllocationBTree
impl RefUnwindSafe for AllocationBTree
impl Send for AllocationBTree
impl Sync for AllocationBTree
impl Unpin for AllocationBTree
impl UnwindSafe for AllocationBTree
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