pub struct MemberStats {
pub name: String,
pub commit_count: usize,
pub fix_commits: usize,
pub avg_message_length: f64,
pub worst_message: String,
pub roast: String,
}Expand description
Stats for a single team member.
Fields§
§name: String§commit_count: usize§fix_commits: usize§avg_message_length: f64§worst_message: String§roast: StringTrait Implementations§
Source§impl Clone for MemberStats
impl Clone for MemberStats
Source§fn clone(&self) -> MemberStats
fn clone(&self) -> MemberStats
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 moreAuto Trait Implementations§
impl Freeze for MemberStats
impl RefUnwindSafe for MemberStats
impl Send for MemberStats
impl Sync for MemberStats
impl Unpin for MemberStats
impl UnsafeUnpin for MemberStats
impl UnwindSafe for MemberStats
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