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