pub struct TableValidationReport {
pub table_name: String,
pub mysql_space_id: u32,
pub disk_space_id: Option<u32>,
pub file_path: Option<String>,
pub space_id_match: bool,
pub mysql_row_format: Option<String>,
pub indexes_verified: usize,
pub indexes: Vec<IndexValidation>,
pub passed: bool,
}Expand description
Deep table validation report.
Fields§
§table_name: StringTable name (db/table).
mysql_space_id: u32Space ID from MySQL.
disk_space_id: Option<u32>Space ID from disk (None if file not found).
file_path: Option<String>Path to the .ibd file (None if not found).
space_id_match: boolWhether the space IDs match.
mysql_row_format: Option<String>Row format from MySQL.
indexes_verified: usizeNumber of index root pages verified.
indexes: Vec<IndexValidation>Details for each index.
passed: boolOverall pass/fail.
Trait Implementations§
Source§impl Clone for TableValidationReport
impl Clone for TableValidationReport
Source§fn clone(&self) -> TableValidationReport
fn clone(&self) -> TableValidationReport
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 TableValidationReport
impl Debug for TableValidationReport
Auto Trait Implementations§
impl Freeze for TableValidationReport
impl RefUnwindSafe for TableValidationReport
impl Send for TableValidationReport
impl Sync for TableValidationReport
impl Unpin for TableValidationReport
impl UnsafeUnpin for TableValidationReport
impl UnwindSafe for TableValidationReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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