pub trait ExtProcess: Sealed {
// Provided methods
fn abort() -> ! { ... }
fn exit(code: i32) -> ! { ... }
fn id() -> u32 ⓘ { ... }
}
Expand description
🌐
Extension trait providing additional methods for Process
es.
It offers the standalone functions in std::process
as associated methods.
Provided Methods§
Sourcefn abort() -> !
fn abort() -> !
Terminates the current process in an abnormal fashion.
See std::process::
abort.
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.