pub struct RecoveryStatistics {
pub total_sessions: usize,
pub successful_recoveries: usize,
pub failed_recoveries: usize,
pub active_recoveries: usize,
pub success_rate: f64,
}Expand description
Recovery statistics
Fields§
§total_sessions: usize§successful_recoveries: usize§failed_recoveries: usize§active_recoveries: usize§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 moreAuto 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<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