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 f679ea6 commit 91a802eCopy full SHA for 91a802e
1 file changed
src/hardlink/record.rs
@@ -30,3 +30,8 @@ pub trait RecordHardlinks<Size, Reporter: ?Sized> {
30
/// Perform hardlinks detection and recording.
31
fn record_hardlinks(&self, argument: RecordHardlinksArgument<Size, Reporter>);
32
}
33
+
34
+/// Do detect and record hardlinks.
35
+pub type Do<'a, Size> = super::HardlinkAware<'a, Size>;
36
+/// Do not detect nor record hardlinks.
37
+pub type DoNot = super::HardlinkIgnorant;
0 commit comments