pub struct IdentityGitConfig {
pub name: Option<String>,
pub email: Option<String>,
}Expand description
Git signing config stored in nex config.
Fields§
§name: Option<String>§email: Option<String>Trait Implementations§
Source§impl Clone for IdentityGitConfig
impl Clone for IdentityGitConfig
Source§fn clone(&self) -> IdentityGitConfig
fn clone(&self) -> IdentityGitConfig
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 Default for IdentityGitConfig
impl Default for IdentityGitConfig
Source§fn default() -> IdentityGitConfig
fn default() -> IdentityGitConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityGitConfig
impl<'de> Deserialize<'de> for IdentityGitConfig
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
Auto Trait Implementations§
impl Freeze for IdentityGitConfig
impl RefUnwindSafe for IdentityGitConfig
impl Send for IdentityGitConfig
impl Sync for IdentityGitConfig
impl Unpin for IdentityGitConfig
impl UnsafeUnpin for IdentityGitConfig
impl UnwindSafe for IdentityGitConfig
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