pub struct CopyStats {
pub files: usize,
pub dirs: usize,
pub symlinks: usize,
pub file_bytes: u64,
pub filtered_out: usize,
}Expand description
Counters of how many things were copied.
Fields§
§files: usizeThe number of plain files copied.
dirs: usizeThe number of directories copied.
symlinks: usizeThe number of symlinks copied.
file_bytes: u64The number of bytes of file content copied, across all files.
filtered_out: usizeThe number of entries filtered out by the CopyOptions::filter callback.
Trait Implementations§
impl Eq for CopyStats
impl StructuralPartialEq for CopyStats
Auto Trait Implementations§
impl Freeze for CopyStats
impl RefUnwindSafe for CopyStats
impl Send for CopyStats
impl Sync for CopyStats
impl Unpin for CopyStats
impl UnwindSafe for CopyStats
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