pub struct ScanStats {
pub files_scanned: usize,
pub files_skipped: usize,
pub total_classes: usize,
pub unique_classes: usize,
pub duration_ms: u64,
pub total_file_size: u64,
}Expand description
Statistics for scanning operation
Fields§
§files_scanned: usizeNumber of files scanned
files_skipped: usizeNumber of files skipped
total_classes: usizeTotal classes found
unique_classes: usizeUnique classes found
duration_ms: u64Scan duration
total_file_size: u64Total file size processed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScanStats
impl RefUnwindSafe for ScanStats
impl Send for ScanStats
impl Sync for ScanStats
impl Unpin for ScanStats
impl UnwindSafe for ScanStats
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