pub struct DuplicateGroup {
pub names: Vec<String>,
pub paths: Vec<String>,
pub wasted_bytes: i64,
}Expand description
A set of files found to be duplicates of one another.
Fields§
§names: Vec<String>The display names of the duplicate models, sorted.
paths: Vec<String>The paths of the duplicate files, sorted.
wasted_bytes: i64The bytes that could be reclaimed by keeping just one copy.
Trait Implementations§
Source§impl Clone for DuplicateGroup
impl Clone for DuplicateGroup
Source§impl Debug for DuplicateGroup
impl Debug for DuplicateGroup
impl Eq for DuplicateGroup
Source§impl PartialEq for DuplicateGroup
impl PartialEq for DuplicateGroup
impl StructuralPartialEq for DuplicateGroup
Auto Trait Implementations§
impl Freeze for DuplicateGroup
impl RefUnwindSafe for DuplicateGroup
impl Send for DuplicateGroup
impl Sync for DuplicateGroup
impl Unpin for DuplicateGroup
impl UnsafeUnpin for DuplicateGroup
impl UnwindSafe for DuplicateGroup
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