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