pub struct Counts {
pub files: u64,
pub lines: u64,
pub words: u64,
pub chars: u64,
pub tests: u64,
}Expand description
A rolled-up count block (a crate’s or a module’s).
Fields§
§files: u64Number of source files.
lines: u64Total lines.
words: u64Total words.
chars: u64Total characters.
tests: u64Total heuristic test count.
Trait Implementations§
impl Eq for Counts
impl StructuralPartialEq for Counts
Auto Trait Implementations§
impl Freeze for Counts
impl RefUnwindSafe for Counts
impl Send for Counts
impl Sync for Counts
impl Unpin for Counts
impl UnsafeUnpin for Counts
impl UnwindSafe for Counts
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