pub struct SyncStats {
pub untracked_copied: usize,
pub modified_copied: usize,
pub skipped: usize,
pub errors: usize,
}Expand description
Statistics about files synced to a worktree.
Fields§
§untracked_copied: usizeNumber of untracked files copied.
modified_copied: usizeNumber of modified (unstaged) files copied.
skipped: usizeNumber of files skipped (e.g., no longer exists).
errors: usizeNumber of files that failed to copy.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncStats
impl RefUnwindSafe for SyncStats
impl Send for SyncStats
impl Sync for SyncStats
impl Unpin for SyncStats
impl UnwindSafe for SyncStats
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