pub struct SweeperSnapshot {
pub total_sampled: u64,
pub total_expired: u64,
pub total_runs: u64,
pub last_run: u64,
}
Expand description
Snapshot of sweeper statistics
Fields§
§total_sampled: u64
§total_expired: u64
§total_runs: u64
§last_run: u64
Trait Implementations§
Source§impl Clone for SweeperSnapshot
impl Clone for SweeperSnapshot
Source§fn clone(&self) -> SweeperSnapshot
fn clone(&self) -> SweeperSnapshot
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SweeperSnapshot
impl RefUnwindSafe for SweeperSnapshot
impl Send for SweeperSnapshot
impl Sync for SweeperSnapshot
impl Unpin for SweeperSnapshot
impl UnwindSafe for SweeperSnapshot
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