pub struct Removed {
pub path: PathBuf,
pub bytes: u64,
pub entries: u64,
pub complete: bool,
}Expand description
One target that was removed, in whole or in part.
Fields§
§path: PathBufThe target.
bytes: u64Allocated bytes given back, counting a hard-linked file once.
entries: u64Files, directories and links unlinked.
complete: boolWhether the target itself is gone. False when something inside it was refused or failed, which leaves it and everything above the refusal standing.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Removed
impl RefUnwindSafe for Removed
impl Send for Removed
impl Sync for Removed
impl Unpin for Removed
impl UnsafeUnpin for Removed
impl UnwindSafe for Removed
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more