pub struct DedupeResult {
pub processed_count: u64,
pub reclaimed_space: FileLen,
}Expand description
Provides information about the number of deduplicated files and reclaimed disk space
Fields§
§processed_count: u64§reclaimed_space: FileLenTrait Implementations§
Source§impl Add for DedupeResult
impl Add for DedupeResult
Source§impl AddAssign for DedupeResult
impl AddAssign for DedupeResult
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl Default for DedupeResult
impl Default for DedupeResult
Source§fn default() -> DedupeResult
fn default() -> DedupeResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DedupeResult
impl RefUnwindSafe for DedupeResult
impl Send for DedupeResult
impl Sync for DedupeResult
impl Unpin for DedupeResult
impl UnwindSafe for DedupeResult
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> 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