pub struct RepairResult {
pub key: Key,
pub repairs_needed: bool,
pub repairs_attempted: usize,
pub repairs_successful: usize,
pub final_state: String,
}
Expand description
Result of a repair operation
Fields§
§key: Key
Key that was repaired
repairs_needed: bool
Whether repairs were needed
repairs_attempted: usize
Number of repair attempts made
repairs_successful: usize
Number of successful repairs
final_state: String
Final state description
Trait Implementations§
Source§impl Clone for RepairResult
impl Clone for RepairResult
Source§fn clone(&self) -> RepairResult
fn clone(&self) -> RepairResult
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for RepairResult
impl RefUnwindSafe for RepairResult
impl Send for RepairResult
impl Sync for RepairResult
impl Unpin for RepairResult
impl UnwindSafe for RepairResult
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