pub struct DepStats {
pub total_deps: usize,
pub dev_deps: usize,
pub optional_deps: usize,
pub git_deps: usize,
pub issue_count: usize,
pub critical_count: usize,
pub high_count: usize,
pub medium_count: usize,
pub low_count: usize,
pub score: f64,
}Expand description
Summary statistics for a dependency analysis.
Fields§
§total_deps: usize§dev_deps: usize§optional_deps: usize§git_deps: usize§issue_count: usize§critical_count: usize§high_count: usize§medium_count: usize§low_count: usize§score: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for DepStats
impl RefUnwindSafe for DepStats
impl Send for DepStats
impl Sync for DepStats
impl Unpin for DepStats
impl UnsafeUnpin for DepStats
impl UnwindSafe for DepStats
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