pub type ShellExecResult<T> = Result<T>;
Result type alias for shell operations
pub enum ShellExecResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value