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