pub struct AuthorMergeGroup {
pub canonical_name: String,
pub canonical_email: String,
pub members: Vec<String>,
}Expand description
One operator-defined merge: several email identities that are actually one person.
Fields§
§canonical_name: StringDisplay name for the merged contributor.
canonical_email: StringPrimary email for the merged contributor (also used as the group’s stable key).
members: Vec<String>Every email folded into this identity (lower-cased), including canonical_email.
Trait Implementations§
Source§impl Clone for AuthorMergeGroup
impl Clone for AuthorMergeGroup
Source§fn clone(&self) -> AuthorMergeGroup
fn clone(&self) -> AuthorMergeGroup
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 AuthorMergeGroup
impl Debug for AuthorMergeGroup
Source§impl<'de> Deserialize<'de> for AuthorMergeGroup
impl<'de> Deserialize<'de> for AuthorMergeGroup
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AuthorMergeGroup
Source§impl PartialEq for AuthorMergeGroup
impl PartialEq for AuthorMergeGroup
Source§impl Serialize for AuthorMergeGroup
impl Serialize for AuthorMergeGroup
impl StructuralPartialEq for AuthorMergeGroup
Auto Trait Implementations§
impl Freeze for AuthorMergeGroup
impl RefUnwindSafe for AuthorMergeGroup
impl Send for AuthorMergeGroup
impl Sync for AuthorMergeGroup
impl Unpin for AuthorMergeGroup
impl UnsafeUnpin for AuthorMergeGroup
impl UnwindSafe for AuthorMergeGroup
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