pub struct CommitStats {
pub total_commits: usize,
pub total_issues: usize,
pub avg_message_length: f64,
pub empty_messages: usize,
pub single_word_messages: usize,
pub wip_commits: usize,
pub fix_only_commits: usize,
}Expand description
Aggregated statistics about analyzed commits.
Fields§
§total_commits: usize§total_issues: usize§avg_message_length: f64§empty_messages: usize§single_word_messages: usize§wip_commits: usize§fix_only_commits: usizeTrait Implementations§
Source§impl Clone for CommitStats
impl Clone for CommitStats
Source§fn clone(&self) -> CommitStats
fn clone(&self) -> CommitStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CommitStats
impl Debug for CommitStats
Auto Trait Implementations§
impl Freeze for CommitStats
impl RefUnwindSafe for CommitStats
impl Send for CommitStats
impl Sync for CommitStats
impl Unpin for CommitStats
impl UnsafeUnpin for CommitStats
impl UnwindSafe for CommitStats
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