Trait std::os::windows::process::ExitStatusExt

1.12.0 · source ·
pub trait ExitStatusExt: Sealed {
    // Required method
    fn from_raw(raw: u32) -> Self;
}
Available on Windows only.
Expand description

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

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

Required Methods§

source

fn from_raw(raw: u32) -> Self

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

Implementors§