pub struct RepairReport {
pub detected: String,
pub rows_recovered: u64,
pub partial_tables: u32,
pub corrupt_path: PathBuf,
}Expand description
What the automatic corruption repair did, kept on the database it produced
Fields§
§detected: StringThe integrity failure that triggered the repair
rows_recovered: u64Rows salvaged across the control table and all column tables
partial_tables: u32Tables whose salvage scan ended early on a damaged page
corrupt_path: PathBufWhere the damaged database files were moved
Trait Implementations§
Source§impl Clone for RepairReport
impl Clone for RepairReport
Source§fn clone(&self) -> RepairReport
fn clone(&self) -> RepairReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RepairReport
impl RefUnwindSafe for RepairReport
impl Send for RepairReport
impl Sync for RepairReport
impl Unpin for RepairReport
impl UnsafeUnpin for RepairReport
impl UnwindSafe for RepairReport
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