Struct git2::Sort [−][src]
pub struct Sort { /* fields omitted */ }Expand description
Orderings that may be specified for Revwalk iteration.
Implementations
impl Sort[src]
impl Sort[src]pub const NONE: Sort[src]
pub const NONE: Sort[src]Sort the repository contents in no particular ordering.
This sorting is arbitrary, implementation-specific, and subject to change at any time. This is the default sorting for new walkers.
pub const TOPOLOGICAL: Sort[src]
pub const TOPOLOGICAL: Sort[src]Sort the repository contents in topological order (children before parents).
This sorting mode can be combined with time sorting.
pub const TIME: Sort[src]
pub const TIME: Sort[src]Sort the repository contents by commit time.
This sorting mode can be combined with topological sorting.
pub const REVERSE: Sort[src]
pub const REVERSE: Sort[src]Iterate through the repository contents in reverse order.
This sorting mode can be combined with any others.
pub fn from_bits(bits: u32) -> Option<Sort>[src]
pub fn from_bits(bits: u32) -> Option<Sort>[src]Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> Sort[src]
pub const fn from_bits_truncate(bits: u32) -> Sort[src]Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> Sort[src]
pub const unsafe fn from_bits_unchecked(bits: u32) -> Sort[src]Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: Sort) -> bool[src]
pub const fn intersects(&self, other: Sort) -> bool[src]Returns true if there are flags common to both self and other.
Trait Implementations
impl BitAndAssign<Sort> for Sort[src]
impl BitAndAssign<Sort> for Sort[src]fn bitand_assign(&mut self, other: Sort)[src]
fn bitand_assign(&mut self, other: Sort)[src]Disables all flags disabled in the set.
impl BitOrAssign<Sort> for Sort[src]
impl BitOrAssign<Sort> for Sort[src]fn bitor_assign(&mut self, other: Sort)[src]
fn bitor_assign(&mut self, other: Sort)[src]Adds the set of flags.
impl BitXorAssign<Sort> for Sort[src]
impl BitXorAssign<Sort> for Sort[src]fn bitxor_assign(&mut self, other: Sort)[src]
fn bitxor_assign(&mut self, other: Sort)[src]Toggles the set of flags.
impl Extend<Sort> for Sort[src]
impl Extend<Sort> for Sort[src]fn extend<T: IntoIterator<Item = Sort>>(&mut self, iterator: T)[src]
fn extend<T: IntoIterator<Item = Sort>>(&mut self, iterator: T)[src]Extends a collection with the contents of an iterator. Read more
fn extend_one(&mut self, item: A)[src]
fn extend_one(&mut self, item: A)[src]extend_one)Extends a collection with exactly one element.
fn extend_reserve(&mut self, additional: usize)[src]
fn extend_reserve(&mut self, additional: usize)[src]extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
impl FromIterator<Sort> for Sort[src]
impl FromIterator<Sort> for Sort[src]impl Ord for Sort[src]
impl Ord for Sort[src]impl PartialOrd<Sort> for Sort[src]
impl PartialOrd<Sort> for Sort[src]fn partial_cmp(&self, other: &Sort) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Sort) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl SubAssign<Sort> for Sort[src]
impl SubAssign<Sort> for Sort[src]fn sub_assign(&mut self, other: Sort)[src]
fn sub_assign(&mut self, other: Sort)[src]Disables all flags enabled in the set.
impl Copy for Sort[src]
impl Eq for Sort[src]
impl StructuralEq for Sort[src]
impl StructuralPartialEq for Sort[src]
Auto Trait Implementations
impl RefUnwindSafe for Sort
impl Send for Sort
impl Sync for Sort
impl Unpin for Sort
impl UnwindSafe for Sort
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more