pub enum GitScopeArg {
Local,
Global,
Skip,
}Expand description
Where auths init writes git signing configuration.
Variants§
Local
This repository only (git config --local).
Global
Every repository on this machine (git config --global).
Skip
Do not touch git configuration at all.
Trait Implementations§
Source§impl Clone for GitScopeArg
impl Clone for GitScopeArg
Source§fn clone(&self) -> GitScopeArg
fn clone(&self) -> GitScopeArg
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 moreimpl Copy for GitScopeArg
Source§impl Debug for GitScopeArg
impl Debug for GitScopeArg
Source§impl ValueEnum for GitScopeArg
impl ValueEnum for GitScopeArg
Auto Trait Implementations§
impl Freeze for GitScopeArg
impl RefUnwindSafe for GitScopeArg
impl Send for GitScopeArg
impl Sync for GitScopeArg
impl Unpin for GitScopeArg
impl UnsafeUnpin for GitScopeArg
impl UnwindSafe for GitScopeArg
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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