foursquare-async 0.1.2

Foursquare API for async Rust
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, thiserror::Error)]
pub enum Error {
	#[error("HTTP error: {0}")]
	Http(#[from] reqwest::Error),
	#[error("Response deserialization error: {0}")]
	Deserialization(#[from] serde_json::Error),
	#[error("Parameter serialization error: {0}")]
	Serialization(#[from] serde_urlencoded::ser::Error)
}