pub struct UnarchivedSnapshots {
pub full_storage: AccountStorageMap,
pub incremental_storage: Option<AccountStorageMap>,
pub bank_fields: SnapshotBankFields,
pub accounts_db_fields: SnapshotAccountsDbFields<SerializableAccountStorageEntry>,
pub full_unpacked_snapshots_dir_and_version: UnpackedSnapshotsDirAndVersion,
pub incremental_unpacked_snapshots_dir_and_version: Option<UnpackedSnapshotsDirAndVersion>,
pub full_measure_untar: Measure,
pub incremental_measure_untar: Option<Measure>,
pub next_append_vec_id: AtomicAccountsFileId,
}Expand description
Helper type to bundle up the results from verify_and_unarchive_snapshots().
Fields§
§full_storage: AccountStorageMap§incremental_storage: Option<AccountStorageMap>§bank_fields: SnapshotBankFields§accounts_db_fields: SnapshotAccountsDbFields<SerializableAccountStorageEntry>§full_unpacked_snapshots_dir_and_version: UnpackedSnapshotsDirAndVersion§incremental_unpacked_snapshots_dir_and_version: Option<UnpackedSnapshotsDirAndVersion>§full_measure_untar: Measure§incremental_measure_untar: Option<Measure>§next_append_vec_id: AtomicAccountsFileIdTrait Implementations§
Auto Trait Implementations§
impl !Freeze for UnarchivedSnapshots
impl !RefUnwindSafe for UnarchivedSnapshots
impl Send for UnarchivedSnapshots
impl Sync for UnarchivedSnapshots
impl Unpin for UnarchivedSnapshots
impl !UnwindSafe for UnarchivedSnapshots
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