Enum cargo_util_schemas::core::GitReference
source · pub enum GitReference {
Tag(String),
Branch(String),
Rev(String),
DefaultBranch,
}
Expand description
Information to find a specific commit in a Git repository.
Variants§
Tag(String)
From a tag.
Branch(String)
From a branch.
Rev(String)
From a specific revision. Can be a commit hash (either short or full),
or a named reference like refs/pull/493/head
.
DefaultBranch
The default branch of the repository, the reference named HEAD
.
Implementations§
source§impl GitReference
impl GitReference
Trait Implementations§
source§impl Clone for GitReference
impl Clone for GitReference
source§fn clone(&self) -> GitReference
fn clone(&self) -> GitReference
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 GitReference
impl Debug for GitReference
source§impl Hash for GitReference
impl Hash for GitReference
source§impl Ord for GitReference
impl Ord for GitReference
source§fn cmp(&self, other: &GitReference) -> Ordering
fn cmp(&self, other: &GitReference) -> 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 GitReference
impl PartialEq for GitReference
source§impl PartialOrd for GitReference
impl PartialOrd for GitReference
impl Eq for GitReference
impl StructuralPartialEq for GitReference
Auto Trait Implementations§
impl Freeze for GitReference
impl RefUnwindSafe for GitReference
impl Send for GitReference
impl Sync for GitReference
impl Unpin for GitReference
impl UnwindSafe for GitReference
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
Tag
: 24 bytesBranch
: 24 bytesRev
: 24 bytesDefaultBranch
: 0 bytes