pub struct RepoStats {
pub files_indexed: usize,
pub files_unchanged: usize,
pub files_purged: usize,
}Expand description
Per-repo outcome of Store::reconcile_repo.
Fields§
§files_indexed: usizeFiles (re)chunked because they were new or changed.
files_unchanged: usizeFiles left untouched because their content hash matched.
files_purged: usizeFiles dropped from the index because they are no longer tracked.
Trait Implementations§
impl Copy for RepoStats
impl Eq for RepoStats
impl StructuralPartialEq for RepoStats
Auto Trait Implementations§
impl Freeze for RepoStats
impl RefUnwindSafe for RepoStats
impl Send for RepoStats
impl Sync for RepoStats
impl Unpin for RepoStats
impl UnsafeUnpin for RepoStats
impl UnwindSafe for RepoStats
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