Enum git2::AutotagOption
source · pub enum AutotagOption {
Unspecified,
Auto,
None,
All,
}
Expand description
Automatic tag following options.
Variants§
Unspecified
Use the setting from the remote’s configuration
Auto
Ask the server for tags pointing to objects we’re already downloading
None
Don’t ask for any tags beyond the refspecs
All
Ask for all the tags
Trait Implementations§
source§impl Clone for AutotagOption
impl Clone for AutotagOption
source§fn clone(&self) -> AutotagOption
fn clone(&self) -> AutotagOption
Returns a copy 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 AutotagOption
impl Debug for AutotagOption
source§impl PartialEq for AutotagOption
impl PartialEq for AutotagOption
source§fn eq(&self, other: &AutotagOption) -> bool
fn eq(&self, other: &AutotagOption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AutotagOption
impl Eq for AutotagOption
impl StructuralPartialEq for AutotagOption
Auto Trait Implementations§
impl Freeze for AutotagOption
impl RefUnwindSafe for AutotagOption
impl Send for AutotagOption
impl Sync for AutotagOption
impl Unpin for AutotagOption
impl UnwindSafe for AutotagOption
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