This project introduces an Ergast
struct which can be used to query the
Ergast API.
It currently supports getting:
All three can be queried for either the current season or any past season.
rust
let client = Ergast::new()?;
let race_results = client
.race_results(None, None)
.await?;
rust
let client = Ergast::new()?;
let races = client
.race_schedule(Some("2020"))
.await?;
rust
let client = Ergast::new()?;
let races = client
.qualifying_results(Some(1), Some("2019"))
.await?;