diff options
| author | Ralf Jung <post@ralfj.de> | 2025-04-10 12:50:10 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-10 12:50:10 +0000 |
| commit | 1347cc8f15f6d3ceae035f7226150da7ddcd83b8 (patch) | |
| tree | 351b40fa66750fb4eac0449318a360cf1167efd3 /library/std/src/os/windows/io/raw.rs | |
| parent | 7da44400129c51c314eccdc0e703e99502b78c1a (diff) | |
| parent | f69ea4d82fdbf0fefc36118071bb69ec6253a285 (diff) | |
| download | rust-1347cc8f15f6d3ceae035f7226150da7ddcd83b8.tar.gz rust-1347cc8f15f6d3ceae035f7226150da7ddcd83b8.zip | |
Merge pull request #4264 from RalfJung/rustup
Rustup
Diffstat (limited to 'library/std/src/os/windows/io/raw.rs')
| -rw-r--r-- | library/std/src/os/windows/io/raw.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/library/std/src/os/windows/io/raw.rs b/library/std/src/os/windows/io/raw.rs index bc3e55c8629..a3ec7440338 100644 --- a/library/std/src/os/windows/io/raw.rs +++ b/library/std/src/os/windows/io/raw.rs @@ -311,42 +311,42 @@ impl IntoRawSocket for net::UdpSocket { } } -#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "anonymous_pipe", since = "1.87.0")] impl AsRawHandle for io::PipeReader { fn as_raw_handle(&self) -> RawHandle { self.0.as_raw_handle() } } -#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "anonymous_pipe", since = "1.87.0")] impl FromRawHandle for io::PipeReader { unsafe fn from_raw_handle(raw_handle: RawHandle) -> Self { unsafe { Self::from_inner(FromRawHandle::from_raw_handle(raw_handle)) } } } -#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "anonymous_pipe", since = "1.87.0")] impl IntoRawHandle for io::PipeReader { fn into_raw_handle(self) -> RawHandle { self.0.into_raw_handle() } } -#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "anonymous_pipe", since = "1.87.0")] impl AsRawHandle for io::PipeWriter { fn as_raw_handle(&self) -> RawHandle { self.0.as_raw_handle() } } -#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "anonymous_pipe", since = "1.87.0")] impl FromRawHandle for io::PipeWriter { unsafe fn from_raw_handle(raw_handle: RawHandle) -> Self { unsafe { Self::from_inner(FromRawHandle::from_raw_handle(raw_handle)) } } } -#[stable(feature = "anonymous_pipe", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "anonymous_pipe", since = "1.87.0")] impl IntoRawHandle for io::PipeWriter { fn into_raw_handle(self) -> RawHandle { self.0.into_raw_handle() |
