pub enum VersionControl {
Git(GitInfo),
}Expand description
Support for different version control systems
Variants§
Implementations§
Trait Implementations§
source§impl Clone for VersionControl
impl Clone for VersionControl
source§fn clone(&self) -> VersionControl
fn clone(&self) -> VersionControl
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 VersionControl
impl Debug for VersionControl
source§impl Display for VersionControl
impl Display for VersionControl
source§impl Hash for VersionControl
impl Hash for VersionControl
source§impl Ord for VersionControl
impl Ord for VersionControl
source§fn cmp(&self, other: &VersionControl) -> Ordering
fn cmp(&self, other: &VersionControl) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<VersionControl> for VersionControl
impl PartialEq<VersionControl> for VersionControl
source§fn eq(&self, other: &VersionControl) -> bool
fn eq(&self, other: &VersionControl) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<VersionControl> for VersionControl
impl PartialOrd<VersionControl> for VersionControl
source§fn partial_cmp(&self, other: &VersionControl) -> Option<Ordering>
fn partial_cmp(&self, other: &VersionControl) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more