Struct solana_runtime::bank::TotalAccountsStats
source · [−]pub struct TotalAccountsStats {
pub num_accounts: usize,
pub data_len: usize,
pub num_executable_accounts: usize,
pub executable_data_len: usize,
pub num_rent_exempt_accounts: usize,
pub num_rent_paying_accounts: usize,
pub num_rent_paying_accounts_without_data: usize,
pub lamports_in_rent_paying_accounts: u64,
}
Expand description
Struct to collect stats when scanning all accounts in get_total_accounts_stats()
Fields
num_accounts: usize
Total number of accounts
data_len: usize
Total data size of all accounts
num_executable_accounts: usize
Total number of executable accounts
executable_data_len: usize
Total data size of executable accounts
num_rent_exempt_accounts: usize
Total number of rent exempt accounts
num_rent_paying_accounts: usize
Total number of rent paying accounts
num_rent_paying_accounts_without_data: usize
Total number of rent paying accounts without data
lamports_in_rent_paying_accounts: u64
Total amount of lamports in rent paying accounts
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for TotalAccountsStats
impl Send for TotalAccountsStats
impl Sync for TotalAccountsStats
impl Unpin for TotalAccountsStats
impl UnwindSafe for TotalAccountsStats
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more