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 @@ -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 " ) ]
203203pub 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 " ) ]
215215impl ExitCodeExt for process:: ExitCode {
216216 fn from_raw ( raw : u32 ) -> Self {
217217 process:: ExitCode :: from_inner ( From :: from ( raw) )
You can’t perform that action at this time.
0 commit comments