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 2438df7 commit 1dd5641Copy full SHA for 1dd5641
library/std/src/fs.rs
@@ -458,6 +458,9 @@ pub fn set_times<P: AsRef<Path>>(path: P, times: FileTimes) -> io::Result<()> {
458
/// }
459
/// ```
460
#[unstable(feature = "fs_set_times", issue = "147455")]
461
+#[doc(alias = "utimensat")]
462
+#[doc(alias = "lutimens")]
463
+#[doc(alias = "lutimes")]
464
pub fn set_times_nofollow<P: AsRef<Path>>(path: P, times: FileTimes) -> io::Result<()> {
465
fs_imp::set_times_nofollow(path.as_ref(), times.0)
466
}
0 commit comments