pub struct CrossNodeSummary {
pub total_groups: usize,
pub exact_groups: usize,
pub perceptual_groups: usize,
pub total_duplicate_files: usize,
}Expand description
Summary of cross-node deduplication results.
Fields§
§total_groups: usizeTotal number of duplicate groups found.
exact_groups: usizeGroups detected via exact hash.
perceptual_groups: usizeGroups detected via perceptual hash.
total_duplicate_files: usizeTotal number of file URIs across all duplicate groups.
Trait Implementations§
Source§impl Clone for CrossNodeSummary
impl Clone for CrossNodeSummary
Source§fn clone(&self) -> CrossNodeSummary
fn clone(&self) -> CrossNodeSummary
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 moreAuto Trait Implementations§
impl Freeze for CrossNodeSummary
impl RefUnwindSafe for CrossNodeSummary
impl Send for CrossNodeSummary
impl Sync for CrossNodeSummary
impl Unpin for CrossNodeSummary
impl UnsafeUnpin for CrossNodeSummary
impl UnwindSafe for CrossNodeSummary
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