pub struct SwapStats {
pub puts: u64,
pub gets: u64,
pub get_miss: u64,
pub spills_to_disk: u64,
pub faults_from_disk: u64,
pub resident_hits: u64,
pub disk_evictions: u64,
}Expand description
The generic paging core, lifted to atlas-tier (CUDA- and verbs-free).
Re-exported under the atlas_tier names (no historical aliases).
Fields§
§puts: u64§gets: u64§get_miss: u64§spills_to_disk: u64§faults_from_disk: u64§resident_hits: u64§disk_evictions: u64Cold on-disk snapshots dropped because the disk cap was hit (a later GET for one cleanly misses → recompute).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SwapStats
impl RefUnwindSafe for SwapStats
impl Send for SwapStats
impl Sync for SwapStats
impl Unpin for SwapStats
impl UnwindSafe for SwapStats
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