Enum git_traverse::commit::Sorting
source · [−]pub enum Sorting {
Topological,
ByCommitterDate,
}
Expand description
Specify how to sort commits during traversal.
Variants
Topological
Commits are sorted as they are mentioned in the commit graph.
ByCommitterDate
Order commit looking up the commit date of the most recent parents.
Note that since only parents are looked up this ordering is partial.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Sorting
impl UnwindSafe for Sorting
Blanket Implementations
Mutably borrows from an owned value. Read more