pub enum TagMode {
None,
Following,
All,
}Expand description
Which tags to fetch alongside the requested refs.
Variants§
None
Do not fetch any tags automatically.
Following
Fetch tags that point at objects being fetched (Git’s default).
All
Fetch all tags from the remote.
Trait Implementations§
impl Copy for TagMode
impl Eq for TagMode
impl StructuralPartialEq for TagMode
Auto Trait Implementations§
impl Freeze for TagMode
impl RefUnwindSafe for TagMode
impl Send for TagMode
impl Sync for TagMode
impl Unpin for TagMode
impl UnsafeUnpin for TagMode
impl UnwindSafe for TagMode
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