pub enum RecoveryStatus {
Valid,
NotLoaded,
NeedsRebuild {
expected: usize,
actual: usize,
},
}Expand description
Status of index recovery/verification.
Variants§
Valid
Index is valid and consistent.
NotLoaded
Index is not loaded in the cache.
NeedsRebuild
Index needs to be rebuilt due to inconsistencies.
Trait Implementations§
Source§impl Clone for RecoveryStatus
impl Clone for RecoveryStatus
Source§fn clone(&self) -> RecoveryStatus
fn clone(&self) -> RecoveryStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 RecoveryStatus
impl Debug for RecoveryStatus
Source§impl PartialEq for RecoveryStatus
impl PartialEq for RecoveryStatus
impl Eq for RecoveryStatus
impl StructuralPartialEq for RecoveryStatus
Auto Trait Implementations§
impl Freeze for RecoveryStatus
impl RefUnwindSafe for RecoveryStatus
impl Send for RecoveryStatus
impl Sync for RecoveryStatus
impl Unpin for RecoveryStatus
impl UnwindSafe for RecoveryStatus
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