pub struct NullableSimpleCommitCommitter {
pub name: String,
pub email: String,
}
Expand description
NullableSimpleCommitCommitter : Information about the Git committer
Fields§
§name: String
Name of the commit’s committer
email: String
Git email address of the commit’s committer
Implementations§
Source§impl NullableSimpleCommitCommitter
impl NullableSimpleCommitCommitter
Sourcepub fn new(name: String, email: String) -> NullableSimpleCommitCommitter
pub fn new(name: String, email: String) -> NullableSimpleCommitCommitter
Information about the Git committer
Trait Implementations§
Source§impl Clone for NullableSimpleCommitCommitter
impl Clone for NullableSimpleCommitCommitter
Source§fn clone(&self) -> NullableSimpleCommitCommitter
fn clone(&self) -> NullableSimpleCommitCommitter
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for NullableSimpleCommitCommitter
impl Default for NullableSimpleCommitCommitter
Source§fn default() -> NullableSimpleCommitCommitter
fn default() -> NullableSimpleCommitCommitter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NullableSimpleCommitCommitter
impl<'de> Deserialize<'de> for NullableSimpleCommitCommitter
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 NullableSimpleCommitCommitter
impl PartialEq for NullableSimpleCommitCommitter
Source§fn eq(&self, other: &NullableSimpleCommitCommitter) -> bool
fn eq(&self, other: &NullableSimpleCommitCommitter) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NullableSimpleCommitCommitter
Auto Trait Implementations§
impl Freeze for NullableSimpleCommitCommitter
impl RefUnwindSafe for NullableSimpleCommitCommitter
impl Send for NullableSimpleCommitCommitter
impl Sync for NullableSimpleCommitCommitter
impl Unpin for NullableSimpleCommitCommitter
impl UnwindSafe for NullableSimpleCommitCommitter
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