pub enum Traversal {
NthParent(usize),
NthAncestor(usize),
}
Expand description
Define how to traverse the commit graph.
Variants§
NthParent(usize)
Select the given parent commit of the currently selected commit, start at 1
for the first parent.
The value will never be 0
.
NthAncestor(usize)
Select the given ancestor of the currently selected commit, start at 1
for the first ancestor.
The value will never be 0
.
Trait Implementations§
source§impl Ord for Traversal
impl Ord for Traversal
source§impl PartialEq for Traversal
impl PartialEq for Traversal
source§impl PartialOrd for Traversal
impl PartialOrd for Traversal
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 Copy for Traversal
impl Eq for Traversal
impl StructuralPartialEq for Traversal
Auto Trait Implementations§
impl Freeze for Traversal
impl RefUnwindSafe for Traversal
impl Send for Traversal
impl Sync for Traversal
impl Unpin for Traversal
impl UnwindSafe for Traversal
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
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)