pub struct StorageRecoveryReport {
pub log: RecoveryReport,
pub replayed_transactions: u64,
}Expand description
Recovery evidence returned when the complete embedded storage layer opens.
Fields§
§log: RecoveryReportAuthoritative log verification and tail-repair evidence.
replayed_transactions: u64Durable transactions newly applied to the materialized index.
Trait Implementations§
Source§impl Clone for StorageRecoveryReport
impl Clone for StorageRecoveryReport
Source§fn clone(&self) -> StorageRecoveryReport
fn clone(&self) -> StorageRecoveryReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StorageRecoveryReport
impl Debug for StorageRecoveryReport
impl Eq for StorageRecoveryReport
Source§impl PartialEq for StorageRecoveryReport
impl PartialEq for StorageRecoveryReport
impl StructuralPartialEq for StorageRecoveryReport
Auto Trait Implementations§
impl Freeze for StorageRecoveryReport
impl RefUnwindSafe for StorageRecoveryReport
impl Send for StorageRecoveryReport
impl Sync for StorageRecoveryReport
impl Unpin for StorageRecoveryReport
impl UnsafeUnpin for StorageRecoveryReport
impl UnwindSafe for StorageRecoveryReport
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