pub enum ProjectVcs {
Git,
Unknown(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ProjectVcs
impl Clone for ProjectVcs
Source§fn clone(&self) -> ProjectVcs
fn clone(&self) -> ProjectVcs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectVcs
impl Debug for ProjectVcs
Source§impl<'de> Deserialize<'de> for ProjectVcs
impl<'de> Deserialize<'de> for ProjectVcs
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for ProjectVcs
impl Display for ProjectVcs
impl Eq for ProjectVcs
Source§impl From<&str> for ProjectVcs
impl From<&str> for ProjectVcs
Source§impl Hash for ProjectVcs
impl Hash for ProjectVcs
Source§impl PartialEq for ProjectVcs
impl PartialEq for ProjectVcs
Source§impl Serialize for ProjectVcs
impl Serialize for ProjectVcs
impl StructuralPartialEq for ProjectVcs
Auto Trait Implementations§
impl Freeze for ProjectVcs
impl RefUnwindSafe for ProjectVcs
impl Send for ProjectVcs
impl Sync for ProjectVcs
impl Unpin for ProjectVcs
impl UnsafeUnpin for ProjectVcs
impl UnwindSafe for ProjectVcs
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