pub struct ExtendedPrecisionCounters {
pub xstrat_bytes: u64,
pub write_bytes: u64,
pub read_bytes: u64,
}
Fields§
§xstrat_bytes: u64
This is a count of bytes of file data flushed out by the XFS flushing daemons.
write_bytes: u64
This is a count of bytes written via write(2) system calls to files in XFS file systems. It can be used in conjunction with the write_calls count to calculate the average size of the write operations to files in XFS file systems.
read_bytes: u64
This is a count of bytes read via read(2) system calls to files in XFS file systems. It can be used in conjunction with the read_calls count to calculate the average size of the read operations to files in XFS file systems.
Auto Trait Implementations§
impl Freeze for ExtendedPrecisionCounters
impl RefUnwindSafe for ExtendedPrecisionCounters
impl Send for ExtendedPrecisionCounters
impl Sync for ExtendedPrecisionCounters
impl Unpin for ExtendedPrecisionCounters
impl UnwindSafe for ExtendedPrecisionCounters
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