struct DeserializableVersionedBank {Show 32 fields
blockhash_queue: BlockhashQueue,
ancestors: AncestorsForSerialization,
hash: Hash,
parent_hash: Hash,
parent_slot: Slot,
hard_forks: HardForks,
transaction_count: u64,
tick_height: u64,
signature_count: u64,
capitalization: u64,
max_tick_height: u64,
hashes_per_tick: Option<u64>,
ticks_per_slot: u64,
ns_per_slot: u128,
genesis_creation_time: UnixTimestamp,
slots_per_year: f64,
accounts_data_len: u64,
slot: Slot,
epoch: Epoch,
block_height: u64,
collector_id: Pubkey,
collector_fees: u64,
fee_calculator: FeeCalculator,
fee_rate_governor: FeeRateGovernor,
collected_rent: u64,
rent_collector: RentCollector,
epoch_schedule: EpochSchedule,
inflation: Inflation,
stakes: Stakes<Delegation>,
unused_accounts: UnusedAccounts,
epoch_stakes: HashMap<Epoch, EpochStakes>,
is_delta: bool,
}
Fields§
§blockhash_queue: BlockhashQueue
§ancestors: AncestorsForSerialization
§hash: Hash
§parent_hash: Hash
§parent_slot: Slot
§hard_forks: HardForks
§transaction_count: u64
§tick_height: u64
§signature_count: u64
§capitalization: u64
§max_tick_height: u64
§hashes_per_tick: Option<u64>
§ticks_per_slot: u64
§ns_per_slot: u128
§genesis_creation_time: UnixTimestamp
§slots_per_year: f64
§accounts_data_len: u64
§slot: Slot
§epoch: Epoch
§block_height: u64
§collector_id: Pubkey
§collector_fees: u64
§fee_calculator: FeeCalculator
§fee_rate_governor: FeeRateGovernor
§collected_rent: u64
§rent_collector: RentCollector
§epoch_schedule: EpochSchedule
§inflation: Inflation
§stakes: Stakes<Delegation>
§unused_accounts: UnusedAccounts
§epoch_stakes: HashMap<Epoch, EpochStakes>
§is_delta: bool
Trait Implementations§
source§impl Clone for DeserializableVersionedBank
impl Clone for DeserializableVersionedBank
source§fn clone(&self) -> DeserializableVersionedBank
fn clone(&self) -> DeserializableVersionedBank
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'de> Deserialize<'de> for DeserializableVersionedBank
impl<'de> Deserialize<'de> for DeserializableVersionedBank
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<DeserializableVersionedBank> for BankFieldsToDeserialize
impl From<DeserializableVersionedBank> for BankFieldsToDeserialize
source§fn from(dvb: DeserializableVersionedBank) -> Self
fn from(dvb: DeserializableVersionedBank) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for DeserializableVersionedBank
impl Send for DeserializableVersionedBank
impl Sync for DeserializableVersionedBank
impl Unpin for DeserializableVersionedBank
impl UnwindSafe for DeserializableVersionedBank
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