Skip to main content

RefSpecRef

Struct RefSpecRef 

Source
pub struct RefSpecRef<'a> { /* private fields */ }
Expand description

A refspec with references to the memory it was parsed from.

Implementations§

Source§

impl<'a> RefSpecRef<'a>

Access

Source

pub fn source(&self) -> Option<&BStr>

Return the left-hand side of the spec, typically the source. It takes many different forms so don’t rely on this being a ref name.

It’s not present in case of deletions.

Source

pub fn destination(&self) -> Option<&BStr>

Return the right-hand side of the spec, typically the destination ref name or ref pattern.

It’s not present in case of source-only specs.

Source

pub fn remote(&self) -> Option<&BStr>

Return the explicitly stored remote side, whose position depends on how the refspec was parsed.

A one-sided push refspec has no explicit remote side and returns None here, even though its source is later also used as its destination.

Source

pub fn local(&self) -> Option<&BStr>

Return the explicitly stored local side, whose position depends on how the refspec was parsed.

Source

pub fn prefix(&self) -> Option<&BStr>

Derive the prefix from the source side of this spec if this is a fetch spec, or the destination side if it is a push spec, if it is possible to do so without ambiguity.

Exact refs starting with refs/ are returned unchanged, like refs/heads/main or refs/namespaces/foo/refs/heads/main. Git-style ref patterns return the fixed portion before their single * when it is more specific than refs/: both refs/heads/* and refs/heads/*/suffix yield refs/heads/. Negative refspecs and one-sided push refspecs return None.

Source

pub fn expand_prefixes(&self, out: &mut Vec<BString>)

Append the remote-ref prefixes represented by this refspec to out, suitable for limiting the refs requested from a remote. Unlike prefix(), partial names without an unambiguous prefix are expanded to all of their Git-style ref-name candidates. For example, main expands to main, refs/main, refs/tags/main, refs/heads/main, refs/remotes/main, and refs/remotes/main/HEAD.

Fetch refspecs use their source; push refspecs use their explicit destination. Negative refspecs produce no prefixes because they only exclude refs selected by positive refspecs; they do not request remote refs.

Source

pub fn instruction(&self) -> Instruction<'a>

Transform the state of the refspec into an instruction making clear what to do with it.

Source§

impl RefSpecRef<'_>

Conversion

Source

pub fn to_owned(&self) -> RefSpec

Convert this ref into a standalone, owned copy.

Source§

impl RefSpecRef<'_>

Source

pub fn to_bstring(&self) -> BString

Reproduce ourselves in parseable form.

Source

pub fn write_to(&self, out: &mut dyn Write) -> Result<()>

Serialize ourselves in a parseable format to out.

Trait Implementations§

Source§

impl<'a> Clone for RefSpecRef<'a>

Source§

fn clone(&self) -> RefSpecRef<'a>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Copy for RefSpecRef<'a>

Source§

impl<'a> Debug for RefSpecRef<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Eq for RefSpecRef<'a>

Source§

impl From<RefSpecRef<'_>> for RefSpec

Source§

fn from(v: RefSpecRef<'_>) -> Self

Converts to this type from the input type.
Source§

impl Hash for RefSpecRef<'_>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for RefSpecRef<'_>

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for RefSpecRef<'_>

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for RefSpecRef<'_>

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for RefSpecRef<'a>

§

impl<'a> RefUnwindSafe for RefSpecRef<'a>

§

impl<'a> Send for RefSpecRef<'a>

§

impl<'a> Sync for RefSpecRef<'a>

§

impl<'a> Unpin for RefSpecRef<'a>

§

impl<'a> UnsafeUnpin for RefSpecRef<'a>

§

impl<'a> UnwindSafe for RefSpecRef<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.