pub fn get_games_all<F: IntoIterator<Item = Filter>>(
filters: F,
) -> Result<Vec<Game>>
Expand description
Executes one or more GET requests to the /Games
endpoint to retreive all available games
.
This will likely make multiple API calls, in MAX_PAGE_LENGTH
increments, until no more entries are
found or until an error occurs.
Optional search filters:
ยงErrors
Any request or parsing errors will be returned.