pub struct IoStats {
pub queue_depth: usize,
pub direct_writes: u64,
pub staged_writes: u64,
pub staging_wal_frames: usize,
}Expand description
Runtime statistics for the I/O thread.
Fields§
§queue_depth: usize§direct_writes: u64§staged_writes: u64§staging_wal_frames: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for IoStats
impl RefUnwindSafe for IoStats
impl Send for IoStats
impl Sync for IoStats
impl Unpin for IoStats
impl UnsafeUnpin for IoStats
impl UnwindSafe for IoStats
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