Trait ExtProcess

Source
pub trait ExtProcess: Sealed {
    // Provided methods
    fn abort() -> ! { ... }
    fn exit(code: i32) -> ! { ... }
    fn id() -> u32  { ... }
}
Expand description

🌐 Extension trait providing additional methods for Processes.

It offers the standalone functions in std::process as associated methods.

Provided Methods§

Source

fn abort() -> !

Terminates the current process in an abnormal fashion.

See std::process::abort.

Source

fn exit(code: i32) -> !

Terminates the current process with the specified exit code.

See std::process::exit.

Source

fn id() -> u32

Returns the OS-assigned process identifier associated with this process.

See std::process::id.

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.

Implementors§