pub struct VerificationReport {
pub issues: Vec<VerificationIssue>,
pub files_checked: u32,
pub directories_checked: u32,
pub clusters_verified: u32,
}Expand description
Report from filesystem verification.
Fields§
§issues: Vec<VerificationIssue>List of issues found
files_checked: u32Total files checked
directories_checked: u32Total directories checked
clusters_verified: u32Total clusters verified
Implementations§
Source§impl VerificationReport
impl VerificationReport
Sourcepub fn issue_count(&self) -> usize
pub fn issue_count(&self) -> usize
Get the number of issues found.
Sourcepub fn issues_of_type<F>(&self, predicate: F) -> Vec<&VerificationIssue>
pub fn issues_of_type<F>(&self, predicate: F) -> Vec<&VerificationIssue>
Get issues filtered by type.
Trait Implementations§
Source§impl Clone for VerificationReport
impl Clone for VerificationReport
Source§fn clone(&self) -> VerificationReport
fn clone(&self) -> VerificationReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VerificationReport
impl RefUnwindSafe for VerificationReport
impl Send for VerificationReport
impl Sync for VerificationReport
impl Unpin for VerificationReport
impl UnsafeUnpin for VerificationReport
impl UnwindSafe for VerificationReport
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