File tree 1 file changed +3
-3
lines changed
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 {
199
199
///
200
200
/// This trait is sealed: it cannot be implemented outside the standard library.
201
201
/// 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 " ) ]
203
203
pub trait ExitCodeExt : Sealed {
204
204
/// Creates a new `ExitCode` from the raw underlying `u32` return value of
205
205
/// a process.
206
206
///
207
207
/// The exit code should not be 259, as this conflicts with the `STILL_ACTIVE`
208
208
/// macro returned from the `GetExitCodeProcess` function to signal that the
209
209
/// 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 " ) ]
211
211
fn from_raw ( raw : u32 ) -> Self ;
212
212
}
213
213
214
- #[ stable ( feature = "windows_process_exit_code_from" , since = "1.63.0 " ) ]
214
+ #[ unstable ( feature = "windows_process_exit_code_from" , issue = "none " ) ]
215
215
impl ExitCodeExt for process:: ExitCode {
216
216
fn from_raw ( raw : u32 ) -> Self {
217
217
process:: ExitCode :: from_inner ( From :: from ( raw) )
You can’t perform that action at this time.
0 commit comments