Struct jj_lib::working_copy::CheckoutStats
source · pub struct CheckoutStats {
pub updated_files: u32,
pub added_files: u32,
pub removed_files: u32,
pub skipped_files: u32,
}
Expand description
Stats about a checkout operation on a working copy. All “files” mentioned below may also be symlinks or materialized conflicts.
Fields§
§updated_files: u32
The number of files that were updated in the working copy. These files existed before and after the checkout.
added_files: u32
The number of files added in the working copy.
removed_files: u32
The number of files removed in the working copy.
skipped_files: u32
The number of files that were supposed to be updated or added in the working copy but were skipped because there was an untracked (probably ignored) file in its place.
Trait Implementations§
source§impl Clone for CheckoutStats
impl Clone for CheckoutStats
source§fn clone(&self) -> CheckoutStats
fn clone(&self) -> CheckoutStats
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CheckoutStats
impl Debug for CheckoutStats
source§impl PartialEq for CheckoutStats
impl PartialEq for CheckoutStats
source§fn eq(&self, other: &CheckoutStats) -> bool
fn eq(&self, other: &CheckoutStats) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CheckoutStats
impl StructuralEq for CheckoutStats
impl StructuralPartialEq for CheckoutStats
Auto Trait Implementations§
impl RefUnwindSafe for CheckoutStats
impl Send for CheckoutStats
impl Sync for CheckoutStats
impl Unpin for CheckoutStats
impl UnwindSafe for CheckoutStats
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