pub enum GitSelector {
Version(VersionRequirement),
Tag(String),
Branch(String),
Commit(GitCommit),
}Expand description
A Git revision selector.
Variants§
Version(VersionRequirement)
A semver requirement matched against the repository’s tags.
Tag(String)
An exact Git tag name.
Branch(String)
A Git branch name.
Commit(GitCommit)
A full Git commit SHA.
Trait Implementations§
Source§impl Clone for GitSelector
impl Clone for GitSelector
Source§fn clone(&self) -> GitSelector
fn clone(&self) -> GitSelector
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 GitSelector
impl Debug for GitSelector
Source§impl<'de> Deserialize<'de> for GitSelector
impl<'de> Deserialize<'de> for GitSelector
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GitSelector
Source§impl PartialEq for GitSelector
impl PartialEq for GitSelector
Source§fn eq(&self, other: &GitSelector) -> bool
fn eq(&self, other: &GitSelector) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GitSelector
impl Serialize for GitSelector
impl StructuralPartialEq for GitSelector
Auto Trait Implementations§
impl Freeze for GitSelector
impl RefUnwindSafe for GitSelector
impl Send for GitSelector
impl Sync for GitSelector
impl Unpin for GitSelector
impl UnsafeUnpin for GitSelector
impl UnwindSafe for GitSelector
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.