pub struct Cluster {
pub emails: Vec<String>,
pub names: Vec<String>,
pub commit_idxs: Vec<usize>,
pub login: Option<String>,
pub avatar_url: Option<String>,
pub profile_name: Option<String>,
pub affiliation: Option<String>,
}Expand description
A cluster of commit identities believed to be one person.
Fields§
§emails: Vec<String>§names: Vec<String>§commit_idxs: Vec<usize>§login: Option<String>§avatar_url: Option<String>§profile_name: Option<String>Display name from the GitHub user profile.
affiliation: Option<String>Affiliation from the GitHub profile company field.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cluster
impl RefUnwindSafe for Cluster
impl Send for Cluster
impl Sync for Cluster
impl Unpin for Cluster
impl UnsafeUnpin for Cluster
impl UnwindSafe for Cluster
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