pub struct GroupBusFactor {
pub bus_factor: u32,
pub files: u32,
pub authors: u32,
pub key_author_ids: Option<Vec<String>>,
}Available on crate feature
vcs-git only.Expand description
Bus factor for one set of files (the repo, or one directory).
Fields§
§bus_factor: u32Developers whose combined departure orphans more than the coverage
threshold of the group’s files. 0 for an empty group.
files: u32Files considered (those with in-window authorship).
Distinct developers who author at least one file in the group.
SHA-256-hashed identities of the removed key developers, in
removal order; Some only under --emit-author-details.
Trait Implementations§
Source§impl Clone for GroupBusFactor
impl Clone for GroupBusFactor
Source§fn clone(&self) -> GroupBusFactor
fn clone(&self) -> GroupBusFactor
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 GroupBusFactor
impl Debug for GroupBusFactor
Source§impl Default for GroupBusFactor
impl Default for GroupBusFactor
Source§fn default() -> GroupBusFactor
fn default() -> GroupBusFactor
Returns the “default value” for a type. Read more
impl Eq for GroupBusFactor
Source§impl PartialEq for GroupBusFactor
impl PartialEq for GroupBusFactor
Source§impl Serialize for GroupBusFactor
impl Serialize for GroupBusFactor
impl StructuralPartialEq for GroupBusFactor
Auto Trait Implementations§
impl Freeze for GroupBusFactor
impl RefUnwindSafe for GroupBusFactor
impl Send for GroupBusFactor
impl Sync for GroupBusFactor
impl Unpin for GroupBusFactor
impl UnsafeUnpin for GroupBusFactor
impl UnwindSafe for GroupBusFactor
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.