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.
aware
ignorant
1 parent 1c201e3 commit 2369f76Copy full SHA for 2369f76
1 file changed
src/hardlink.rs
@@ -1,16 +1,15 @@
1
-mod ignorant;
2
-pub use ignorant::HardlinkIgnorant;
3
-
4
// `RecordHardlink` is POSIX-exclusive, because whilst Windows does have `MetadataExt::number_of_links`, it requires Nightly.
5
#[cfg(unix)]
6
-mod aware;
+pub mod aware;
7
8
pub use aware::HardlinkAware;
9
10
pub mod hardlink_list;
+pub mod ignorant;
11
pub mod link_path_list;
12
pub mod record;
13
14
pub use hardlink_list::{HardlinkList, HardlinkListReflection};
+pub use ignorant::HardlinkIgnorant;
15
pub use link_path_list::{LinkPathList, LinkPathListReflection};
16
pub use record::{RecordHardlinks, RecordHardlinksArgument};
0 commit comments