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 duplicate 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<'de> Deserialize<'de> for VersionControl
impl<'de> Deserialize<'de> for VersionControl
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<VersionControl, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<VersionControl, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 for VersionControl
impl PartialEq for VersionControl
Source§impl PartialOrd for VersionControl
impl PartialOrd for VersionControl
Source§impl Serialize for VersionControl
impl Serialize for VersionControl
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for VersionControl
impl StructuralPartialEq for VersionControl
Auto Trait Implementations§
impl Freeze for VersionControl
impl RefUnwindSafe for VersionControl
impl Send for VersionControl
impl Sync for VersionControl
impl Unpin for VersionControl
impl UnwindSafe for VersionControl
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