pub struct ProjectShameStats {
pub total_files_analyzed: usize,
pub total_issues: usize,
pub garbage_density: f64,
pub most_common_patterns: Vec<PatternStats>,
pub hall_of_shame: Vec<ShameEntry>,
pub _shame_categories: HashMap<String, usize>,
}Fields§
§total_files_analyzed: usize§total_issues: usize§garbage_density: f64§most_common_patterns: Vec<PatternStats>§hall_of_shame: Vec<ShameEntry>§_shame_categories: HashMap<String, usize>Trait Implementations§
Source§impl Clone for ProjectShameStats
impl Clone for ProjectShameStats
Source§fn clone(&self) -> ProjectShameStats
fn clone(&self) -> ProjectShameStats
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 moreAuto Trait Implementations§
impl Freeze for ProjectShameStats
impl RefUnwindSafe for ProjectShameStats
impl Send for ProjectShameStats
impl Sync for ProjectShameStats
impl Unpin for ProjectShameStats
impl UnwindSafe for ProjectShameStats
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