pub trait ExitStatusExt: Sealed {
// Required method
fn from_raw(raw: u32) -> Self;
}
Available on Windows only.
Expand description
Windows-specific extensions to process::ExitStatus
.
This trait is sealed: it cannot be implemented outside the standard library. This is so that future additional methods are not breaking changes.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.