Limitless Airkorea API wrapper written in Rust.
```rust use {airkorea, futures::prelude::*, tokio::runtime::Runtime};
let mut rt = Runtime::new(); let status = rt.blockon(airkorea::search(lng, lat))?; println!("Station address: {}", status.stationaddress); for pollutant in status { println!("{}", pollutant); } ```