Trait std::os::windows::process::ExitStatusExt1.12.0[][src]

pub trait ExitStatusExt: Sealed {
    fn from_raw(raw: u32) -> Self;
}
This is supported on Windows only.
Expand description

Windows 特定于 process::ExitStatus 的扩展。

trait 是密封的: 不能在标准库之外实现。 这是为了将来的附加方法不会破坏更改。

Required methods

根据进程的原始底层 u32 返回值创建新的 ExitStatus

Implementors