pub struct MigrationStats {
pub demoted_to_warm: usize,
pub demoted_to_cold: usize,
pub keys_scanned: usize,
}Expand description
Statistics returned from a single migration scan cycle.
Fields§
§demoted_to_warm: usizeNumber of keys demoted from hot to warm.
demoted_to_cold: usizeNumber of keys demoted from warm to cold.
keys_scanned: usizeTotal keys scanned in this cycle.
Auto Trait Implementations§
impl Freeze for MigrationStats
impl RefUnwindSafe for MigrationStats
impl Send for MigrationStats
impl Sync for MigrationStats
impl Unpin for MigrationStats
impl UnsafeUnpin for MigrationStats
impl UnwindSafe for MigrationStats
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