pub struct BlockMapBTree {
pub lookups: u32,
pub compares: u32,
pub inserts: u32,
pub deletes: u32,
}
Fields§
§lookups: u32
Number of block map btree lookup operations on XFS files.
compares: u32
Number of block map btree compare operations in XFS block map lookups.
inserts: u32
Number of block map btree records inserted for XFS files.
deletes: u32
Number of block map btree records deleted for XFS files.
Auto Trait Implementations§
impl Freeze for BlockMapBTree
impl RefUnwindSafe for BlockMapBTree
impl Send for BlockMapBTree
impl Sync for BlockMapBTree
impl Unpin for BlockMapBTree
impl UnwindSafe for BlockMapBTree
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