Skip to content

Commit 2de8bdb

Browse files
committed
Make "windows_process_exit_code_from" unstable
1 parent 7902405 commit 2de8bdb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

std/src/os/windows/process.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -199,19 +199,19 @@ impl ChildExt for process::Child {
199199
///
200200
/// This trait is sealed: it cannot be implemented outside the standard library.
201201
/// This is so that future additional methods are not breaking changes.
202-
#[stable(feature = "windows_process_exit_code_from", since = "1.63.0")]
202+
#[unstable(feature = "windows_process_exit_code_from", issue = "none")]
203203
pub trait ExitCodeExt: Sealed {
204204
/// Creates a new `ExitCode` from the raw underlying `u32` return value of
205205
/// a process.
206206
///
207207
/// The exit code should not be 259, as this conflicts with the `STILL_ACTIVE`
208208
/// macro returned from the `GetExitCodeProcess` function to signal that the
209209
/// process has yet to run to completion.
210-
#[stable(feature = "windows_process_exit_code_from", since = "1.63.0")]
210+
#[unstable(feature = "windows_process_exit_code_from", issue = "none")]
211211
fn from_raw(raw: u32) -> Self;
212212
}
213213

214-
#[stable(feature = "windows_process_exit_code_from", since = "1.63.0")]
214+
#[unstable(feature = "windows_process_exit_code_from", issue = "none")]
215215
impl ExitCodeExt for process::ExitCode {
216216
fn from_raw(raw: u32) -> Self {
217217
process::ExitCode::from_inner(From::from(raw))

0 commit comments

Comments
 (0)