Enum gix_object::commit::ref_iter::Token
source · pub enum Token<'a> {
Tree {
id: ObjectId,
},
Parent {
id: ObjectId,
},
Author {
signature: SignatureRef<'a>,
},
Committer {
signature: SignatureRef<'a>,
},
Encoding(&'a BStr),
ExtraHeader((&'a BStr, Cow<'a, BStr>)),
Message(&'a BStr),
}
Expand description
A token returned by the commit iterator.
Variants§
Tree
Parent
Author
A person who authored the content of the commit.
Fields
§
signature: SignatureRef<'a>
Committer
A person who committed the authors work to the repository.
Fields
§
signature: SignatureRef<'a>
Encoding(&'a BStr)
ExtraHeader((&'a BStr, Cow<'a, BStr>))
Message(&'a BStr)
Implementations§
source§impl<'a> Token<'a>
impl<'a> Token<'a>
sourcepub fn id(&self) -> Option<&oid>
pub fn id(&self) -> Option<&oid>
Return the object id of this token if its a tree or a parent commit.
sourcepub fn try_into_id(self) -> Option<ObjectId>
pub fn try_into_id(self) -> Option<ObjectId>
Return the owned object id of this token if its a tree or a parent commit.
Trait Implementations§
source§impl<'a> Ord for Token<'a>
impl<'a> Ord for Token<'a>
source§impl<'a> PartialEq for Token<'a>
impl<'a> PartialEq for Token<'a>
source§impl<'a> PartialOrd for Token<'a>
impl<'a> PartialOrd for Token<'a>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<'a> Eq for Token<'a>
impl<'a> StructuralPartialEq for Token<'a>
Auto Trait Implementations§
impl<'a> Freeze for Token<'a>
impl<'a> RefUnwindSafe for Token<'a>
impl<'a> Send for Token<'a>
impl<'a> Sync for Token<'a>
impl<'a> Unpin for Token<'a>
impl<'a> UnwindSafe for Token<'a>
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)