solana_accounts_db::accounts_hash

Struct HashStats

source
pub struct HashStats {
Show 23 fields pub total_us: u64, pub mark_time_us: u64, pub cache_hash_data_us: u64, pub scan_time_total_us: u64, pub zeros_time_total_us: u64, pub hash_time_total_us: u64, pub sort_time_total_us: u64, pub hash_total: usize, pub num_snapshot_storage: usize, pub scan_chunks: usize, pub num_slots: usize, pub num_dirty_slots: usize, pub collect_snapshots_us: u64, pub storage_sort_us: u64, pub storage_size_quartiles: StorageSizeQuartileStats, pub oldest_root: Slot, pub roots_older_than_epoch: AtomicUsize, pub accounts_in_roots_older_than_epoch: AtomicUsize, pub append_vec_sizes_older_than_epoch: AtomicUsize, pub longest_ancient_scan_us: AtomicU64, pub sum_ancient_scans_us: AtomicU64, pub count_ancient_scans: AtomicU64, pub pubkey_bin_search_us: AtomicU64,
}

Fields§

§total_us: u64§mark_time_us: u64§cache_hash_data_us: u64§scan_time_total_us: u64§zeros_time_total_us: u64§hash_time_total_us: u64§sort_time_total_us: u64§hash_total: usize§num_snapshot_storage: usize§scan_chunks: usize§num_slots: usize§num_dirty_slots: usize§collect_snapshots_us: u64§storage_sort_us: u64§storage_size_quartiles: StorageSizeQuartileStats§oldest_root: Slot§roots_older_than_epoch: AtomicUsize§accounts_in_roots_older_than_epoch: AtomicUsize§append_vec_sizes_older_than_epoch: AtomicUsize§longest_ancient_scan_us: AtomicU64§sum_ancient_scans_us: AtomicU64§count_ancient_scans: AtomicU64§pubkey_bin_search_us: AtomicU64

Implementations§

source§

impl HashStats

source

pub fn calc_storage_size_quartiles( &mut self, storages: &[Arc<AccountStorageEntry>], )

source

pub fn log(&self)

Trait Implementations§

source§

impl Debug for HashStats

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for HashStats

source§

fn default() -> HashStats

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> AbiExample for T

source§

default fn example() -> T

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more