A library to parse currencyapi latest
response.
This library doesn't parse the response JSON, it just takes advantage of the regularity in the API. It has some sanity-checks for the regularity so it should be fine at least for casual use.
Use the [Scanner
] to iterate over currency [Entry
]s.
```rust
// sample response from /latest USD & EUR: https://api.currencyapi.com/v3/latest?apikey=
let currencies = currencyapiparse::Scanner::tryfrom(response)?;
for entry in currencies {
println!("{} = {:.2}",
std::str::from_utf8(&entry.currency)?,
response[entry].parse::Entry
s can conveniently index the response they come from.
);
}
```