pub type Result<T> = Result<T, GitToolError>;
pub enum Result<T> { Ok(T), Err(GitToolError), }
Contains the success value
Contains the error value