Struct gix_status::index_as_worktree::Outcome

source ·
pub struct Outcome {
    pub entries_to_process: usize,
    pub entries_processed: usize,
    pub entries_skipped_by_common_prefix: usize,
    pub entries_skipped_by_pathspec: usize,
    pub entries_skipped_by_entry_flags: usize,
    pub symlink_metadata_calls: usize,
    pub entries_to_update: usize,
    pub racy_clean: usize,
    pub worktree_bytes: u64,
    pub worktree_files_read: usize,
    pub odb_bytes: u64,
    pub odb_objects_read: usize,
}
Expand description

Provide additional information collected during the runtime of index_as_worktree().

Fields§

§entries_to_process: usize

The total amount of entries that is to be processed.

§entries_processed: usize

The amount of entries we actually processed. If this isn’t the entire set, the operation was interrupted.

§entries_skipped_by_common_prefix: usize

The amount of entries we didn’t even traverse (and thus update with stat) due to a common prefix in pathspecs. This is similar to the current working directory.

§entries_skipped_by_pathspec: usize

The amount of entries that were skipped due to exclusion by pathspecs.

§entries_skipped_by_entry_flags: usize

The amount of entries that were skipped as the entry flag indicated this.

§symlink_metadata_calls: usize

The amount of times we queried symlink-metadata for a file on disk.

§entries_to_update: usize

The amount of entries whose stats would need to be updated as its modification couldn’t be determined without an expensive calculation.

With these updates, this calculation will be avoided next time the status runs. Note that the stat updates are delegated to the caller.

§racy_clean: usize

The amount of entries that were considered racy-clean - they will need thorough checking to see if they are truly clean, i.e. didn’t change.

§worktree_bytes: u64

The amount of bytes read from the worktree in order to determine if an entry changed, across all files.

§worktree_files_read: usize

The amount of files read in full from the worktree (and into memory).

§odb_bytes: u64

The amount of bytes read from the object database in order to determine if an entry changed, across all objects.

§odb_objects_read: usize

The amount of objects read from the object database.

Implementations§

source§

impl Outcome

source

pub fn skipped(&self) -> usize

The total amount of skipped entries, i.e. those that weren’t processed at all.

Trait Implementations§

source§

impl Clone for Outcome

source§

fn clone(&self) -> Outcome

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Outcome

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Outcome

source§

fn default() -> Outcome

Returns the “default value” for a type. Read more
source§

impl Ord for Outcome

source§

fn cmp(&self, other: &Outcome) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Outcome

source§

fn eq(&self, other: &Outcome) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Outcome

source§

fn partial_cmp(&self, other: &Outcome) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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 more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Eq for Outcome

source§

impl StructuralPartialEq for Outcome

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.