pub struct LineStats {
pub total: usize,
pub code: usize,
pub comment: usize,
pub blank: usize,
}Expand description
Line count statistics.
Fields§
§total: usizeTotal number of lines.
code: usizeNumber of code lines (non-blank, non-comment).
comment: usizeNumber of comment lines.
blank: usizeNumber of blank lines.
Implementations§
Trait Implementations§
Source§impl AddAssign for LineStats
impl AddAssign for LineStats
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+= operation. Read moreimpl Eq for LineStats
impl StructuralPartialEq for LineStats
Auto Trait Implementations§
impl Freeze for LineStats
impl RefUnwindSafe for LineStats
impl Send for LineStats
impl Sync for LineStats
impl Unpin for LineStats
impl UnwindSafe for LineStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.