We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1005565 commit 7fe51ebCopy full SHA for 7fe51eb
1 file changed
src/data_tree/hardlink.rs
@@ -2,13 +2,13 @@ use super::DataTree;
2
use crate::size;
3
use assert_cmp::debug_assert_op;
4
use rayon::prelude::*;
5
-use std::{ffi::OsStr, ops::Mul, path::Path};
+use std::{ffi::OsStr, path::Path};
6
7
impl<Name, Size> DataTree<Name, Size>
8
where
9
Self: Send,
10
Name: AsRef<OsStr>,
11
- Size: size::Size + Mul<u64, Output = Size> + Sync,
+ Size: size::Size + Sync,
12
{
13
/// Reduce the size of the directories that have hardlinks.
14
pub fn par_deduplicate_hardlinks(&mut self, hardlink_info: &[(Size, Vec<&Path>)]) {
0 commit comments