File tree 1 file changed +3
-3
lines changed
library/std/src/os/windows
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -347,19 +347,19 @@ impl ChildExt for process::Child {
347
347
///
348
348
/// This trait is sealed: it cannot be implemented outside the standard library.
349
349
/// This is so that future additional methods are not breaking changes.
350
- #[ unstable( feature = "windows_process_exit_code_from" , issue = "none " ) ]
350
+ #[ unstable( feature = "windows_process_exit_code_from" , issue = "111688 " ) ]
351
351
pub trait ExitCodeExt : Sealed {
352
352
/// Creates a new `ExitCode` from the raw underlying `u32` return value of
353
353
/// a process.
354
354
///
355
355
/// The exit code should not be 259, as this conflicts with the `STILL_ACTIVE`
356
356
/// macro returned from the `GetExitCodeProcess` function to signal that the
357
357
/// process has yet to run to completion.
358
- #[ unstable( feature = "windows_process_exit_code_from" , issue = "none " ) ]
358
+ #[ unstable( feature = "windows_process_exit_code_from" , issue = "111688 " ) ]
359
359
fn from_raw ( raw : u32 ) -> Self ;
360
360
}
361
361
362
- #[ unstable( feature = "windows_process_exit_code_from" , issue = "none " ) ]
362
+ #[ unstable( feature = "windows_process_exit_code_from" , issue = "111688 " ) ]
363
363
impl ExitCodeExt for process:: ExitCode {
364
364
fn from_raw ( raw : u32 ) -> Self {
365
365
process:: ExitCode :: from_inner ( From :: from ( raw) )
You can’t perform that action at this time.
0 commit comments