pub enum VcsType {
Git,
Svn,
Mercurial,
None,
}Expand description
Version control system type.
Variants§
Git
Git version control system.
Svn
Subversion (SVN) version control system.
Mercurial
Mercurial (Hg) version control system.
None
No version control system detected.
Trait Implementations§
impl Eq for VcsType
impl StructuralPartialEq for VcsType
Auto Trait Implementations§
impl Freeze for VcsType
impl RefUnwindSafe for VcsType
impl Send for VcsType
impl Sync for VcsType
impl Unpin for VcsType
impl UnsafeUnpin for VcsType
impl UnwindSafe for VcsType
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