pub struct VcsContributor {
pub name: String,
pub email: String,
pub commit_count: u32,
}Fields§
§name: String§email: String§commit_count: u32Trait Implementations§
Source§impl Clone for VcsContributor
impl Clone for VcsContributor
Source§fn clone(&self) -> VcsContributor
fn clone(&self) -> VcsContributor
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 VcsContributor
impl Debug for VcsContributor
Source§impl<'de> Deserialize<'de> for VcsContributor
impl<'de> Deserialize<'de> for VcsContributor
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
Source§impl PartialEq for VcsContributor
impl PartialEq for VcsContributor
Source§fn eq(&self, other: &VcsContributor) -> bool
fn eq(&self, other: &VcsContributor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VcsContributor
impl Serialize for VcsContributor
impl Eq for VcsContributor
impl StructuralPartialEq for VcsContributor
Auto Trait Implementations§
impl Freeze for VcsContributor
impl RefUnwindSafe for VcsContributor
impl Send for VcsContributor
impl Sync for VcsContributor
impl Unpin for VcsContributor
impl UnsafeUnpin for VcsContributor
impl UnwindSafe for VcsContributor
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