pub struct ValidationReport {
pub total: usize,
pub valid: usize,
pub invalid: usize,
pub fixed: usize,
pub errors: Vec<ValidationError>,
}Expand description
Summary returned by [validate_sqlite].
Fields§
§total: usize§valid: usize§invalid: usize§fixed: usizeRecords repaired in-place by re-applying prepare() (only set when fix = true).
errors: Vec<ValidationError>Auto Trait Implementations§
impl Freeze for ValidationReport
impl RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnsafeUnpin for ValidationReport
impl UnwindSafe for ValidationReport
Blanket Implementations§
impl<T> Allocation for T
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