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: StoredMetaWriteVersion
Auto 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