pub enum VersionControlSystem {
Git,
Mercurial,
Subversion,
Bazaar,
Unknown,
}Expand description
Supported VCS
Variants§
Implementations§
Source§impl VersionControlSystem
impl VersionControlSystem
pub fn from_rule(rule: Rule) -> VersionControlSystem
Trait Implementations§
Source§impl Debug for VersionControlSystem
impl Debug for VersionControlSystem
Source§impl PartialEq for VersionControlSystem
impl PartialEq for VersionControlSystem
impl StructuralPartialEq for VersionControlSystem
Auto Trait Implementations§
impl Freeze for VersionControlSystem
impl RefUnwindSafe for VersionControlSystem
impl Send for VersionControlSystem
impl Sync for VersionControlSystem
impl Unpin for VersionControlSystem
impl UnwindSafe for VersionControlSystem
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