Struct solana_runtime::accounts_db::ShrinkStats
source · pub(crate) struct ShrinkStats {Show 19 fields
last_report: AtomicInterval,
num_slots_shrunk: AtomicUsize,
storage_read_elapsed: AtomicU64,
index_read_elapsed: AtomicU64,
create_and_insert_store_elapsed: AtomicU64,
store_accounts_elapsed: AtomicU64,
update_index_elapsed: AtomicU64,
handle_reclaims_elapsed: AtomicU64,
remove_old_stores_shrink_us: AtomicU64,
rewrite_elapsed: AtomicU64,
drop_storage_entries_elapsed: AtomicU64,
recycle_stores_write_elapsed: AtomicU64,
accounts_removed: AtomicUsize,
bytes_removed: AtomicU64,
bytes_written: AtomicU64,
skipped_shrink: AtomicU64,
dead_accounts: AtomicU64,
alive_accounts: AtomicU64,
accounts_loaded: AtomicU64,
}
Fields§
§last_report: AtomicInterval
§num_slots_shrunk: AtomicUsize
§storage_read_elapsed: AtomicU64
§index_read_elapsed: AtomicU64
§create_and_insert_store_elapsed: AtomicU64
§store_accounts_elapsed: AtomicU64
§update_index_elapsed: AtomicU64
§handle_reclaims_elapsed: AtomicU64
§remove_old_stores_shrink_us: AtomicU64
§rewrite_elapsed: AtomicU64
§drop_storage_entries_elapsed: AtomicU64
§recycle_stores_write_elapsed: AtomicU64
§accounts_removed: AtomicUsize
§bytes_removed: AtomicU64
§bytes_written: AtomicU64
§skipped_shrink: AtomicU64
§dead_accounts: AtomicU64
§alive_accounts: AtomicU64
§accounts_loaded: AtomicU64
Implementations§
source§impl ShrinkStats
impl ShrinkStats
Trait Implementations§
source§impl Debug for ShrinkStats
impl Debug for ShrinkStats
source§impl Default for ShrinkStats
impl Default for ShrinkStats
source§fn default() -> ShrinkStats
fn default() -> ShrinkStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ShrinkStats
impl Send for ShrinkStats
impl Sync for ShrinkStats
impl Unpin for ShrinkStats
impl UnwindSafe for ShrinkStats
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