pub struct Stats {
pub demoted: u64,
pub promoted: u64,
pub faults: u64,
pub served: u64,
pub bytes_out: u64,
pub bytes_in: u64,
}Expand description
The running totals, for INFO and for the gates.
Fields§
§demoted: u64Values moved out to the file.
promoted: u64Values brought back into memory.
faults: u64Reads that went to the device, whether or not they promoted. This over the number of point reads is the ratio G9 is a gate on.
served: u64Reads that went to the device and left the value there.
bytes_out: u64Payload bytes written to the file.
bytes_in: u64Payload bytes read back from it.
Trait Implementations§
impl Copy for Stats
impl Eq for Stats
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnsafeUnpin for Stats
impl UnwindSafe for Stats
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