pub trait ExitCodeExt {
// Required method
fn from_raw(raw: u32) -> Self;
}ⓘ This trait cannot be implemented outside
std.🔬This is a nightly-only experimental API. (
windows_process_exit_code_from #111688)Available on Windows only.
Expand description
Windows-specific extensions to process::ExitCode.
Required Methods§
Sourcefn from_raw(raw: u32) -> Self
🔬This is a nightly-only experimental API. (windows_process_exit_code_from #111688)
fn from_raw(raw: u32) -> Self
windows_process_exit_code_from #111688)Creates a new ExitCode from the raw underlying u32 return value of
a process.
The exit code should not be 259, as this conflicts with the STILL_ACTIVE
macro returned from the GetExitCodeProcess function to signal that the
process has yet to run to completion.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".