pub enum GitSigningScope {
Local {
repo_path: PathBuf,
},
Global,
Skip,
}Expand description
Variants§
Local
Configure signing for a specific repository only.
Global
Configure signing globally for all repositories (default).
Skip
Do not configure git signing.
Trait Implementations§
Source§impl Clone for GitSigningScope
impl Clone for GitSigningScope
Source§fn clone(&self) -> GitSigningScope
fn clone(&self) -> GitSigningScope
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 GitSigningScope
impl Debug for GitSigningScope
Source§impl Default for GitSigningScope
impl Default for GitSigningScope
Source§fn default() -> GitSigningScope
fn default() -> GitSigningScope
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GitSigningScope
impl RefUnwindSafe for GitSigningScope
impl Send for GitSigningScope
impl Sync for GitSigningScope
impl Unpin for GitSigningScope
impl UnsafeUnpin for GitSigningScope
impl UnwindSafe for GitSigningScope
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