pub struct NullableGitUser {
pub name: Option<String>,
pub email: Option<String>,
pub date: Option<String>,
}
Expand description
NullableGitUser : Metaproperties for Git author/committer information.
Fields§
§name: Option<String>
§email: Option<String>
§date: Option<String>
Implementations§
Source§impl NullableGitUser
impl NullableGitUser
Sourcepub fn new() -> NullableGitUser
pub fn new() -> NullableGitUser
Metaproperties for Git author/committer information.
Trait Implementations§
Source§impl Clone for NullableGitUser
impl Clone for NullableGitUser
Source§fn clone(&self) -> NullableGitUser
fn clone(&self) -> NullableGitUser
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 NullableGitUser
impl Debug for NullableGitUser
Source§impl Default for NullableGitUser
impl Default for NullableGitUser
Source§fn default() -> NullableGitUser
fn default() -> NullableGitUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NullableGitUser
impl<'de> Deserialize<'de> for NullableGitUser
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 NullableGitUser
impl PartialEq for NullableGitUser
Source§impl Serialize for NullableGitUser
impl Serialize for NullableGitUser
impl StructuralPartialEq for NullableGitUser
Auto Trait Implementations§
impl Freeze for NullableGitUser
impl RefUnwindSafe for NullableGitUser
impl Send for NullableGitUser
impl Sync for NullableGitUser
impl Unpin for NullableGitUser
impl UnwindSafe for NullableGitUser
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