diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-08-11 14:08:24 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-08-19 11:59:56 -0700 |
| commit | afeeadeae5094a374821a32cc78a47109c7304ea (patch) | |
| tree | 547f12cb21d41858b453bc8ad9f4fa2d14e09ac0 /src/libstd/sys/windows | |
| parent | 9d6520f97ba9062e6a6103f4038357e928d2f851 (diff) | |
| download | rust-afeeadeae5094a374821a32cc78a47109c7304ea.tar.gz rust-afeeadeae5094a374821a32cc78a47109c7304ea.zip | |
std: Stabilize APIs for the 1.12 release
Stabilized
* `Cell::as_ptr`
* `RefCell::as_ptr`
* `IpAddr::is_{unspecified,loopback,multicast}`
* `Ipv6Addr::octets`
* `LinkedList::contains`
* `VecDeque::contains`
* `ExitStatusExt::from_raw` - both on Unix and Windows
* `Receiver::recv_timeout`
* `RecvTimeoutError`
* `BinaryHeap::peek_mut`
* `PeekMut`
* `iter::Product`
* `iter::Sum`
* `OccupiedEntry::remove_entry`
* `VacantEntry::into_key`
Deprecated
* `Cell::as_unsafe_cell`
* `RefCell::as_unsafe_cell`
* `OccupiedEntry::remove_pair`
Closes #27708
cc #27709
Closes #32313
Closes #32630
Closes #32713
Closes #34029
Closes #34392
Closes #34285
Closes #34529
Diffstat (limited to 'src/libstd/sys/windows')
| -rw-r--r-- | src/libstd/sys/windows/ext/process.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/ext/process.rs b/src/libstd/sys/windows/ext/process.rs index 56c6a73d4f8..98166bf8cda 100644 --- a/src/libstd/sys/windows/ext/process.rs +++ b/src/libstd/sys/windows/ext/process.rs @@ -83,10 +83,11 @@ impl IntoRawHandle for process::ChildStderr { } /// Windows-specific extensions to `std::process::ExitStatus` -#[unstable(feature = "exit_status_from", issue = "32713")] +#[stable(feature = "exit_status_from", since = "1.12.0")] pub trait ExitStatusExt { /// Creates a new `ExitStatus` from the raw underlying `u32` return value of /// a process. + #[stable(feature = "exit_status_from", since = "1.12.0")] fn from_raw(raw: u32) -> Self; } |
