Struct solana_ledger::blockstore_db::columns::BankHash
source · pub struct BankHash;
Expand description
The bank hash column.
This column family persists the bank hash of a given slot. Note that not every slot has a bank hash (e.g., a dead slot.)
The bank hash of a slot is derived from hashing the delta state of all the accounts in a slot combined with the bank hash of its parent slot. A bank hash of a slot essentially represents all the account states at that slot.
- index type:
u64
(seeSlotColumn
) - value type:
blockstore_meta::FrozenHashVersioned
Trait Implementations§
source§impl TypedColumn for BankHash
impl TypedColumn for BankHash
type Type = FrozenHashVersioned
impl SlotColumn<u64> for BankHash
Auto Trait Implementations§
impl RefUnwindSafe for BankHash
impl Send for BankHash
impl Sync for BankHash
impl Unpin for BankHash
impl UnwindSafe for BankHash
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> Column for Twhere
T: SlotColumn<u64>,
impl<T> Column for Twhere T: SlotColumn<u64>,
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request