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 89c0f50 commit 2d88c52Copy full SHA for 2d88c52
library/std/src/fs.rs
@@ -1026,7 +1026,7 @@ impl Metadata {
1026
/// Ok(())
1027
/// }
1028
/// ```
1029
- #[unstable(feature = "is_symlink", issue = "none")]
+ #[unstable(feature = "is_symlink", issue = "85748")]
1030
pub fn is_symlink(&self) -> bool {
1031
self.file_type().is_symlink()
1032
}
library/std/src/path.rs
@@ -2588,7 +2588,7 @@ impl Path {
2588
/// assert_eq!(link_path.is_symlink(), true);
2589
/// assert_eq!(link_path.exists(), false);
2590
2591
2592
2593
fs::symlink_metadata(self).map(|m| m.is_symlink()).unwrap_or(false)
2594
0 commit comments