pub struct ValidateReport {
pub valid: bool,
pub issues: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Report returned after a validate operation.
Fields§
§valid: boolWhether all validations passed without errors.
issues: Vec<String>Validation errors (e.g. checksum mismatches) that indicate corruption.
warnings: Vec<String>Non-fatal warnings (e.g. missing files on disk).
Trait Implementations§
Source§impl Debug for ValidateReport
impl Debug for ValidateReport
Auto Trait Implementations§
impl Freeze for ValidateReport
impl RefUnwindSafe for ValidateReport
impl Send for ValidateReport
impl Sync for ValidateReport
impl Unpin for ValidateReport
impl UnsafeUnpin for ValidateReport
impl UnwindSafe for ValidateReport
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