pub struct AnalysisResult {
pub files: Vec<FileStats>,
pub summary: Summary,
pub elapsed: Duration,
pub scanned_files: usize,
pub skipped_files: usize,
}Expand description
Complete analysis result.
Fields§
§files: Vec<FileStats>All file statistics.
summary: SummaryOverall summary.
elapsed: DurationAnalysis duration.
scanned_files: usizeNumber of files scanned.
skipped_files: usizeNumber of files skipped.
Trait Implementations§
Source§impl Clone for AnalysisResult
impl Clone for AnalysisResult
Source§fn clone(&self) -> AnalysisResult
fn clone(&self) -> AnalysisResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnalysisResult
impl Debug for AnalysisResult
Auto Trait Implementations§
impl Freeze for AnalysisResult
impl RefUnwindSafe for AnalysisResult
impl Send for AnalysisResult
impl Sync for AnalysisResult
impl Unpin for AnalysisResult
impl UnwindSafe for AnalysisResult
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