pub type ProcResult<T> = Result<T, Error>;
A possible result of running and waiting for a process to terminate.
pub enum ProcResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value