pub struct CopyResult {
pub files_copied: usize,
pub files_failed: usize,
pub bytes_copied: u64,
pub failed_files: Vec<(PathBuf, String)>,
}Fields§
§files_copied: usize§files_failed: usize§bytes_copied: u64§failed_files: Vec<(PathBuf, String)>Implementations§
Source§impl CopyResult
impl CopyResult
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CopyResult
impl RefUnwindSafe for CopyResult
impl Send for CopyResult
impl Sync for CopyResult
impl Unpin for CopyResult
impl UnwindSafe for CopyResult
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