pub struct Stats {
pub directories: u64,
pub files: u64,
pub inodes_processed: u64,
pub inodes_replaced: u64,
pub inodes_rewritten: u64,
pub misunderstood: u64,
pub errors: u64,
}Fields§
§directories: u64Count of directories that were scanned. This includes both command-line arguments and subdirectories found in recursive processing.
files: u64Count of file paths that were scanned. This includes both command-line arguments and paths found in recursive processing.
inodes_processed: u64Count of inodes we actually processed. We maintain a cache of processed inode numbers, so a given inode is be processed only once.
inodes_replaced: u64Count of inodes modified. Split into inodes that were automatically replaced and inodes that were rewritten. We do a rewrite if there are hardlinks to maintain them.
inodes_rewritten: u64§misunderstood: u64Files that we couldn’t understand. The case where the file has the right extension, but e.g. bad magic, do not count.
errors: u64Various errors other than bad format above.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Stats
Auto Trait Implementations§
impl Freeze for Stats
impl RefUnwindSafe for Stats
impl Send for Stats
impl Sync for Stats
impl Unpin for Stats
impl UnwindSafe for Stats
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