pub struct VerifyReport {
pub file: String,
pub total_pages: u64,
pub page_size: u32,
pub passed: bool,
pub findings: Vec<VerifyFinding>,
pub summary: Vec<CheckSummary>,
}Expand description
Full verification report for a tablespace.
Fields§
§file: StringPath to the tablespace file.
total_pages: u64Total number of pages in the file.
page_size: u32Page size in bytes.
passed: boolWhether all checks passed.
findings: Vec<VerifyFinding>Individual findings (issues found).
summary: Vec<CheckSummary>Per-check summaries.
Trait Implementations§
Source§impl Clone for VerifyReport
impl Clone for VerifyReport
Source§fn clone(&self) -> VerifyReport
fn clone(&self) -> VerifyReport
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 VerifyReport
impl Debug for VerifyReport
Auto Trait Implementations§
impl Freeze for VerifyReport
impl RefUnwindSafe for VerifyReport
impl Send for VerifyReport
impl Sync for VerifyReport
impl Unpin for VerifyReport
impl UnsafeUnpin for VerifyReport
impl UnwindSafe for VerifyReport
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