pub struct WalRecoveryResult {
pub recovered_operations: usize,
pub skipped_operations: usize,
pub failed_operations: usize,
pub failures: Vec<WalRecoveryFailure>,
}Expand description
Result of WAL recovery operation
Fields§
§recovered_operations: usizeNumber of operations successfully recovered
skipped_operations: usizeOperations that were skipped (already applied)
failed_operations: usizeOperations that failed to recover
failures: Vec<WalRecoveryFailure>Detailed failure reasons
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WalRecoveryResult
impl RefUnwindSafe for WalRecoveryResult
impl Send for WalRecoveryResult
impl Sync for WalRecoveryResult
impl Unpin for WalRecoveryResult
impl UnwindSafe for WalRecoveryResult
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