pub struct NullableSimpleCommitAuthor {
pub name: String,
pub email: String,
}
Expand description
NullableSimpleCommitAuthor : Information about the Git author
Fields§
§name: String
Name of the commit’s author
email: String
Git email address of the commit’s author
Implementations§
Source§impl NullableSimpleCommitAuthor
impl NullableSimpleCommitAuthor
Sourcepub fn new(name: String, email: String) -> NullableSimpleCommitAuthor
pub fn new(name: String, email: String) -> NullableSimpleCommitAuthor
Information about the Git author
Trait Implementations§
Source§impl Clone for NullableSimpleCommitAuthor
impl Clone for NullableSimpleCommitAuthor
Source§fn clone(&self) -> NullableSimpleCommitAuthor
fn clone(&self) -> NullableSimpleCommitAuthor
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 Debug for NullableSimpleCommitAuthor
impl Debug for NullableSimpleCommitAuthor
Source§impl Default for NullableSimpleCommitAuthor
impl Default for NullableSimpleCommitAuthor
Source§fn default() -> NullableSimpleCommitAuthor
fn default() -> NullableSimpleCommitAuthor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NullableSimpleCommitAuthor
impl<'de> Deserialize<'de> for NullableSimpleCommitAuthor
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 StructuralPartialEq for NullableSimpleCommitAuthor
Auto Trait Implementations§
impl Freeze for NullableSimpleCommitAuthor
impl RefUnwindSafe for NullableSimpleCommitAuthor
impl Send for NullableSimpleCommitAuthor
impl Sync for NullableSimpleCommitAuthor
impl Unpin for NullableSimpleCommitAuthor
impl UnwindSafe for NullableSimpleCommitAuthor
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