Expand description
Shared classification of a child process’s exit status.
Cabin spawns external tools (formatters, linters, the C/C++
toolchain) and needs to report how they exited without leaking
platform-specific ExitStatus details into its own error and
report types. ExitStatusKind is that stable, serializable-free
summary; exit_status_kind derives it once at the spawn site.
Enums§
- Exit
Status Kind - Stringified exit-status kind preserved so the orchestration layer can decide whether to display an exit code or a signal.
Functions§
- exit_
status_ kind - Classify a finished
std::process::ExitStatusinto anExitStatusKind, preferring the exit code and falling back to the terminating signal on Unix.