pub struct AnalysisStats {
pub total_functions: usize,
pub total_files: usize,
pub unique_fingerprints: usize,
pub memory_bytes: usize,
}Expand description
Statistics snapshot of the analyzer state
Fields§
§total_functions: usize§total_files: usize§unique_fingerprints: usize§memory_bytes: usizeTrait Implementations§
Source§impl Clone for AnalysisStats
impl Clone for AnalysisStats
Source§fn clone(&self) -> AnalysisStats
fn clone(&self) -> AnalysisStats
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 AnalysisStats
impl RefUnwindSafe for AnalysisStats
impl Send for AnalysisStats
impl Sync for AnalysisStats
impl Unpin for AnalysisStats
impl UnsafeUnpin for AnalysisStats
impl UnwindSafe for AnalysisStats
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