pub const RunResult = union(enum)
pub const RunResult = union(enum) {
/// Thild process exited with code 0, writing this stdout.
success: []u8,
/// The child process could not be created.
spawn_failed: process.SpawnError,
/// The child process indicated failure.
bad_exit_code: u8,
/// The child process terminated abnormally.
crashed,
}