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