pub struct CleanAccountsStats {
pub purge_stats: PurgeStats,
pub latest_accounts_index_roots_stats: LatestAccountsIndexRootsStats,
pub clean_old_root_us: AtomicU64,
pub clean_old_root_reclaim_us: AtomicU64,
pub reset_uncleaned_roots_us: AtomicU64,
pub remove_dead_accounts_remove_us: AtomicU64,
pub remove_dead_accounts_shrink_us: AtomicU64,
pub clean_stored_dead_slots_us: AtomicU64,
pub uncleaned_roots_slot_list_1: AtomicU64,
pub get_account_sizes_us: AtomicU64,
pub slots_cleaned: AtomicU64,
}
Fields§
§purge_stats: PurgeStats
§latest_accounts_index_roots_stats: LatestAccountsIndexRootsStats
§clean_old_root_us: AtomicU64
§clean_old_root_reclaim_us: AtomicU64
§reset_uncleaned_roots_us: AtomicU64
§remove_dead_accounts_remove_us: AtomicU64
§remove_dead_accounts_shrink_us: AtomicU64
§clean_stored_dead_slots_us: AtomicU64
§uncleaned_roots_slot_list_1: AtomicU64
§get_account_sizes_us: AtomicU64
§slots_cleaned: AtomicU64
Implementations§
Trait Implementations§
Source§impl Debug for CleanAccountsStats
impl Debug for CleanAccountsStats
Source§impl Default for CleanAccountsStats
impl Default for CleanAccountsStats
Source§fn default() -> CleanAccountsStats
fn default() -> CleanAccountsStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for CleanAccountsStats
impl RefUnwindSafe for CleanAccountsStats
impl Send for CleanAccountsStats
impl Sync for CleanAccountsStats
impl Unpin for CleanAccountsStats
impl UnwindSafe for CleanAccountsStats
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more