pub struct RecoveryStatistics {
pub total_errors_encountered: usize,
pub errors_recovered: usize,
pub objects_skipped: usize,
pub objects_reconstructed: usize,
pub heuristic_fixes_applied: usize,
pub fuzzy_matches: usize,
pub recovery_time_ms: u64,
pub success_rate: f64,
}Expand description
Statistics for recovery operations
Fields§
§total_errors_encountered: usize§errors_recovered: usize§objects_skipped: usize§objects_reconstructed: usize§heuristic_fixes_applied: usize§fuzzy_matches: usize§recovery_time_ms: u64§success_rate: f64Trait Implementations§
Source§impl Clone for RecoveryStatistics
impl Clone for RecoveryStatistics
Source§fn clone(&self) -> RecoveryStatistics
fn clone(&self) -> RecoveryStatistics
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 RecoveryStatistics
impl Debug for RecoveryStatistics
Source§impl Default for RecoveryStatistics
impl Default for RecoveryStatistics
Source§fn default() -> RecoveryStatistics
fn default() -> RecoveryStatistics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RecoveryStatistics
impl RefUnwindSafe for RecoveryStatistics
impl Send for RecoveryStatistics
impl Sync for RecoveryStatistics
impl Unpin for RecoveryStatistics
impl UnwindSafe for RecoveryStatistics
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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