pub struct SupplementalSnapshotInfo {
pub status_cache_slot_deltas: Vec<BankSlotDelta>,
pub bank_fields_to_serialize: BankFieldsToSerialize,
pub bank_hash_stats: BankHashStats,
pub accounts_delta_hash: AccountsDeltaHash,
pub epoch_accounts_hash: Option<EpochAccountsHash>,
pub write_version: StoredMetaWriteVersion,
}Expand description
Supplemental information needed for snapshots
Fields§
§status_cache_slot_deltas: Vec<BankSlotDelta>§bank_fields_to_serialize: BankFieldsToSerialize§bank_hash_stats: BankHashStats§accounts_delta_hash: AccountsDeltaHash§epoch_accounts_hash: Option<EpochAccountsHash>§write_version: StoredMetaWriteVersionAuto Trait Implementations§
impl !Freeze for SupplementalSnapshotInfo
impl RefUnwindSafe for SupplementalSnapshotInfo
impl Send for SupplementalSnapshotInfo
impl Sync for SupplementalSnapshotInfo
impl Unpin for SupplementalSnapshotInfo
impl UnwindSafe for SupplementalSnapshotInfo
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> 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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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