struct LatestAccountsIndexRootsStats {
roots_len: AtomicUsize,
historical_roots_len: AtomicUsize,
uncleaned_roots_len: AtomicUsize,
previous_uncleaned_roots_len: AtomicUsize,
roots_range: AtomicU64,
rooted_cleaned_count: AtomicUsize,
unrooted_cleaned_count: AtomicUsize,
clean_unref_from_storage_us: AtomicU64,
clean_dead_slot_us: AtomicU64,
}
Fields§
§roots_len: AtomicUsize
§historical_roots_len: AtomicUsize
§uncleaned_roots_len: AtomicUsize
§previous_uncleaned_roots_len: AtomicUsize
§roots_range: AtomicU64
§rooted_cleaned_count: AtomicUsize
§unrooted_cleaned_count: AtomicUsize
§clean_unref_from_storage_us: AtomicU64
§clean_dead_slot_us: AtomicU64
Implementations§
source§impl LatestAccountsIndexRootsStats
impl LatestAccountsIndexRootsStats
fn update(&self, accounts_index_roots_stats: &AccountsIndexRootsStats)
fn report(&self)
Trait Implementations§
source§impl Default for LatestAccountsIndexRootsStats
impl Default for LatestAccountsIndexRootsStats
source§fn default() -> LatestAccountsIndexRootsStats
fn default() -> LatestAccountsIndexRootsStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for LatestAccountsIndexRootsStats
impl Send for LatestAccountsIndexRootsStats
impl Sync for LatestAccountsIndexRootsStats
impl Unpin for LatestAccountsIndexRootsStats
impl UnwindSafe for LatestAccountsIndexRootsStats
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