Geocodio

A client library for the Geocodio API

Usage

Geocode

```rust use geocodio::GeocodioProxy;

fn main() { let geocodio = GeocodioProxy::new().unwrap()); let response = geocodio .geocode( AddressParams::AddressInput(AddressInput { line1: "Black Rock Desert".tostring(), line2: None, city: "Gerlach".tostring(), state: "NV".tostring(), country: "US".tostring(), postalcode: "89412".tostring(), }), Some(&["acs-economics", "zip4"]), ) .await .unwrap(); println!( "Burning Man is located at the coordinates: ({}, {})", response.results[0].location.latitude, response.results[0].location.longitude ) } ```