Struct git_ref::file::loose::Reference [−][src]
Expand description
A git ref which is stored in a file.
Fields
name: FullName
The path to uniquely identify this ref within its store.
target: Target
The target of the reference, either a symbolic reference by full name or an object by its id.
Implementations
Returns true if a reflog exists in the given store
.
Please note that this method shouldn’t be used to check if a log exists before trying to read it, but instead is meant to be the fastest possible way to determine if a log exists or not. If the caller needs to know if it’s readable, try to read the log instead with a reverse or forward iterator.
Return a reflog reverse iterator for this ref, reading chunks from the back into the fixed buffer buf
, in the given store
.
The iterator will traverse log entries from most recent to oldest, reading the underlying file in chunks from the back.
Return Ok(None)
if no reflog exists.
Return a reflog forward iterator for this ref and write its file contents into buf
, in the given store
.
The iterator will traverse log entries from oldest to newest.
Return Ok(None)
if no reflog exists.
Follow this symbolic reference until the end of the chain is reached and an object ID is available, and possibly peel this object until the final target object is revealed.
Use peel::none()
If an error occurs this reference remains unchanged.
Follow this symbolic reference one level and return the ref it refers to, possibly providing access to packed
references for lookup.
Returns None
if this is not a symbolic reference, hence the leaf of the chain.
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Reference
impl UnwindSafe for Reference
Blanket Implementations
Mutably borrows from an owned value. Read more