diff options
| author | Pavel Grigorenko <GrigorenkoPV@ya.ru> | 2024-09-11 01:26:55 +0300 |
|---|---|---|
| committer | Pavel Grigorenko <GrigorenkoPV@ya.ru> | 2024-09-11 01:26:55 +0300 |
| commit | 741d6ef17e7ee4a77c9fbc73ea92878d2a6e58ab (patch) | |
| tree | 79f513fb55c0ef0497d173dde638e5f16eee7a22 | |
| parent | 33855f80d4393bff5d1226eabf8e61f348179cee (diff) | |
| download | rust-741d6ef17e7ee4a77c9fbc73ea92878d2a6e58ab.tar.gz rust-741d6ef17e7ee4a77c9fbc73ea92878d2a6e58ab.zip | |
Stabilize `std::io::ErrorKind::CrossesDevices`
| -rw-r--r-- | library/std/src/io/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs index 6ecd9469c17..d0b20b344ff 100644 --- a/library/std/src/io/error.rs +++ b/library/std/src/io/error.rs @@ -353,7 +353,7 @@ pub enum ErrorKind { #[stable(feature = "io_error_a_bit_more", since = "CURRENT_RUSTC_VERSION")] Deadlock, /// Cross-device or cross-filesystem (hard) link or rename. - #[unstable(feature = "io_error_more", issue = "86442")] + #[stable(feature = "io_error_crosses_devices", since = "CURRENT_RUSTC_VERSION")] CrossesDevices, /// Too many (hard) links to the same filesystem object. /// |
