pub struct AccountsStats {Show 22 fields
pub delta_hash_scan_time_total_us: AtomicU64,
pub delta_hash_accumulate_time_total_us: AtomicU64,
pub delta_hash_num: AtomicU64,
pub skipped_rewrites_num: AtomicUsize,
pub last_store_report: AtomicInterval,
pub store_hash_accounts: AtomicU64,
pub calc_stored_meta: AtomicU64,
pub store_accounts: AtomicU64,
pub store_update_index: AtomicU64,
pub store_handle_reclaims: AtomicU64,
pub store_append_accounts: AtomicU64,
pub stakes_cache_check_and_store_us: AtomicU64,
pub store_num_accounts: AtomicU64,
pub store_total_data: AtomicU64,
pub create_store_count: AtomicU64,
pub store_get_slot_store: AtomicU64,
pub store_find_existing: AtomicU64,
pub dropped_stores: AtomicU64,
pub store_uncleaned_update: AtomicU64,
pub handle_dead_keys_us: AtomicU64,
pub purge_exact_us: AtomicU64,
pub purge_exact_count: AtomicU64,
}
Fields§
§delta_hash_scan_time_total_us: AtomicU64
§delta_hash_accumulate_time_total_us: AtomicU64
§delta_hash_num: AtomicU64
§skipped_rewrites_num: AtomicUsize
§last_store_report: AtomicInterval
§store_hash_accounts: AtomicU64
§calc_stored_meta: AtomicU64
§store_accounts: AtomicU64
§store_update_index: AtomicU64
§store_handle_reclaims: AtomicU64
§store_append_accounts: AtomicU64
§stakes_cache_check_and_store_us: AtomicU64
§store_num_accounts: AtomicU64
§store_total_data: AtomicU64
§create_store_count: AtomicU64
§store_get_slot_store: AtomicU64
§store_find_existing: AtomicU64
§dropped_stores: AtomicU64
§store_uncleaned_update: AtomicU64
§handle_dead_keys_us: AtomicU64
§purge_exact_us: AtomicU64
§purge_exact_count: AtomicU64
Trait Implementations§
Source§impl Debug for AccountsStats
impl Debug for AccountsStats
Source§impl Default for AccountsStats
impl Default for AccountsStats
Source§fn default() -> AccountsStats
fn default() -> AccountsStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for AccountsStats
impl RefUnwindSafe for AccountsStats
impl Send for AccountsStats
impl Sync for AccountsStats
impl Unpin for AccountsStats
impl UnwindSafe for AccountsStats
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