Crate proc_result

Source
Expand description

A tiny cross-platforrm library containing exit status and code types.

Unlike std::process, this crate does not require the standard library1, nor libc, and can create and interpret exit codes of non-current platforms. For example, on Windows, it can read and interpret exit codes that may have been recorded from a Linux process, or vice versa.


  1. The std feature is enabled by default, but can be disabled. 

Modules§

raw
Raw exit code and status representations.
unix
Unix-specific process signals and exit codes.
windows
Windows-specific exit codes and handling.

Enums§

ProcResult
An exit code or exit state returned by a program.