pub struct RecoveryResult {
pub entries: Vec<RecoveredEntry>,
pub loaded_snapshot: bool,
pub replayed_aof: bool,
}Expand description
The result of recovering a shard’s persisted state.
Fields§
§entries: Vec<RecoveredEntry>Recovered entries, keyed by name for easy insertion.
loaded_snapshot: boolWhether a snapshot was loaded.
replayed_aof: boolWhether an AOF was replayed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecoveryResult
impl RefUnwindSafe for RecoveryResult
impl Send for RecoveryResult
impl Sync for RecoveryResult
impl Unpin for RecoveryResult
impl UnwindSafe for RecoveryResult
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