pub struct Stats {
pub directories: u64,
pub files: u64,
pub candidate_files: u64,
pub files_read: u64,
pub files_linked: u64,
pub errors: u64,
pub bytes_linked: 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.
candidate_files: u64§files_read: u64Count of files that we read or attempted to read
files_linked: u64Count of files that we linked
errors: u64Count of files that couldn’t be processed
bytes_linked: u64Summary of sizes of files that were linked
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