File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
library/std/src/os/windows Expand file tree Collapse file tree 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 {
347347///
348348/// This trait is sealed: it cannot be implemented outside the standard library.
349349/// 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 " ) ]
351351pub trait ExitCodeExt : Sealed {
352352 /// Creates a new `ExitCode` from the raw underlying `u32` return value of
353353 /// a process.
354354 ///
355355 /// The exit code should not be 259, as this conflicts with the `STILL_ACTIVE`
356356 /// macro returned from the `GetExitCodeProcess` function to signal that the
357357 /// 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 " ) ]
359359 fn from_raw ( raw : u32 ) -> Self ;
360360}
361361
362- #[ unstable( feature = "windows_process_exit_code_from" , issue = "none " ) ]
362+ #[ unstable( feature = "windows_process_exit_code_from" , issue = "111688 " ) ]
363363impl ExitCodeExt for process:: ExitCode {
364364 fn from_raw ( raw : u32 ) -> Self {
365365 process:: ExitCode :: from_inner ( From :: from ( raw) )
You can’t perform that action at this time.
0 commit comments