pub struct LanguageSummary {
pub files: usize,
pub lines: LineStats,
pub size: u64,
pub complexity: Complexity,
}Expand description
Statistics grouped by language.
Fields§
§files: usizeNumber of files.
lines: LineStatsLine statistics.
size: u64Total size in bytes.
complexity: ComplexityComplexity metrics.
Trait Implementations§
Source§impl Clone for LanguageSummary
impl Clone for LanguageSummary
Source§fn clone(&self) -> LanguageSummary
fn clone(&self) -> LanguageSummary
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 LanguageSummary
impl Debug for LanguageSummary
Source§impl Default for LanguageSummary
impl Default for LanguageSummary
Source§fn default() -> LanguageSummary
fn default() -> LanguageSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LanguageSummary
impl RefUnwindSafe for LanguageSummary
impl Send for LanguageSummary
impl Sync for LanguageSummary
impl Unpin for LanguageSummary
impl UnwindSafe for LanguageSummary
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