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