pub struct PackVerifyReport {
pub total_files: usize,
pub ok_files: usize,
pub failed_files: Vec<String>,
pub missing_files: Vec<String>,
pub is_valid: bool,
}Expand description
The result of verifying a pack directory against a set of FileRecords.
Fields§
§total_files: usize§ok_files: usize§failed_files: Vec<String>Files that existed but had a wrong hash or size.
missing_files: Vec<String>Files listed in records but not found on disk.
is_valid: boolImplementations§
Auto Trait Implementations§
impl Freeze for PackVerifyReport
impl RefUnwindSafe for PackVerifyReport
impl Send for PackVerifyReport
impl Sync for PackVerifyReport
impl Unpin for PackVerifyReport
impl UnsafeUnpin for PackVerifyReport
impl UnwindSafe for PackVerifyReport
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