pub type ExitCode = Option<i32>;
An optional process exit code.
None means success (exit 0), Some(code) means the process should exit with the given code.
None
Some(code)
pub enum ExitCode { None, Some(i32), }
No value.
Some value of type T.
T