pub enum SupportedVCS {
Git,
Jujutsu,
Mercurial,
Subversion,
}Expand description
Which version control systems are supported.
Variants§
Git
Git repositories
Jujutsu
Jujutsu repositories
Mercurial
Mercurial repositories
Subversion
Subversion repositories
Implementations§
Source§impl SupportedVCS
impl SupportedVCS
Sourcefn repo_dirname(&self) -> &str
fn repo_dirname(&self) -> &str
The name of the directory containing repository information for different version control systems.
Trait Implementations§
Source§impl VariantArray for SupportedVCS
impl VariantArray for SupportedVCS
Auto Trait Implementations§
impl Freeze for SupportedVCS
impl RefUnwindSafe for SupportedVCS
impl Send for SupportedVCS
impl Sync for SupportedVCS
impl Unpin for SupportedVCS
impl UnwindSafe for SupportedVCS
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