pub struct UnlinkReport {
pub removed: usize,
pub drift_skipped: usize,
pub already_missing: usize,
}Expand description
Summary returned by unlink.
Fields§
§removed: usizeFiles removed from disk.
drift_skipped: usizeEntries skipped because the destination drifted (use force to
delete anyway).
already_missing: usizeEntries skipped because the destination is already gone.
Trait Implementations§
Source§impl Clone for UnlinkReport
impl Clone for UnlinkReport
Source§fn clone(&self) -> UnlinkReport
fn clone(&self) -> UnlinkReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UnlinkReport
impl Debug for UnlinkReport
Source§impl Default for UnlinkReport
impl Default for UnlinkReport
Source§fn default() -> UnlinkReport
fn default() -> UnlinkReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UnlinkReport
impl RefUnwindSafe for UnlinkReport
impl Send for UnlinkReport
impl Sync for UnlinkReport
impl Unpin for UnlinkReport
impl UnsafeUnpin for UnlinkReport
impl UnwindSafe for UnlinkReport
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