Struct git_ref::packed::Reference

source ·
pub struct Reference<'a> {
    pub name: &'a FullNameRef,
    pub target: &'a BStr,
    pub object: Option<&'a BStr>,
}
Expand description

A reference as parsed from the packed-refs file

Fields§

§name: &'a FullNameRef

The validated full name of the reference.

§target: &'a BStr

The target object id of the reference, hex encoded.

§object: Option<&'a BStr>

The fully peeled object id, hex encoded, that the ref is ultimately pointing to i.e. when all indirections are removed.

Implementations§

source§

impl<'a> Reference<'a>

source

pub fn target(&self) -> ObjectId

Decode the target as object

source

pub fn object(&self) -> ObjectId

Decode the object this reference is ultimately pointing to. Note that this is the target() if this is not a fully peeled reference like a tag.

Trait Implementations§

source§

impl<'a> Debug for Reference<'a>

source§

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

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

impl<'p> From<Reference<'p>> for Reference

source§

fn from(value: Reference<'p>) -> Self

Converts to this type from the input type.
source§

impl<'a> PartialEq<Reference<'a>> for Reference<'a>

source§

fn eq(&self, other: &Reference<'a>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a> Eq for Reference<'a>

source§

impl<'a> StructuralEq for Reference<'a>

source§

impl<'a> StructuralPartialEq for Reference<'a>

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for Reference<'a>

§

impl<'a> Send for Reference<'a>

§

impl<'a> Sync for Reference<'a>

§

impl<'a> Unpin for Reference<'a>

§

impl<'a> UnwindSafe for Reference<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.