1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
//! The `"status"` field within the Geocoding API response object contains the
//! status of the request, and may contain debugging information to help you
//! track down why geocoding is not working.
use crate::geocoding::error::Error;
use phf::phf_map;
use serde::{Deserialize, Serialize, Deserializer};
// -----------------------------------------------------------------------------
/// Indicates the status of the response.
#[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize)]
pub enum Status {
/// Generally indicates one of the following:
/// * The query (`address`, `components` or `latlng`) is missing.
/// * An invalid `result_type` or `location_type` was given.
#[serde(alias = "INVALID_REQUEST")]
InvalidRequest,
/// Indicates that no errors occurred; the address was successfully parsed
/// and at least one geocode was returned.
#[serde(alias = "OK")]
Ok,
/// Indicates any of the following:
/// * The API key is missing or invalid.
/// * Billing has not been enabled on your account.
/// * A self-imposed usage cap has been exceeded.
/// * The provided method of payment is no longer valid (for example, a
/// credit card has expired).
///
/// See the [Maps
/// FAQ](https://developers.google.com/maps/faq#over-limit-key-error) to
/// learn how to fix this.
#[serde(alias = "OVER_DAILY_LIMIT")]
OverDailyLimit,
/// Indicates the requestor has exceeded quota.
#[serde(alias = "OVER_QUERY_LIMIT")]
OverQueryLimit,
/// Indicates that the API did not complete the request. Confirm that the
/// request was sent over HTTPS instead of HTTP.
#[serde(alias = "REQUEST_DENIED")]
RequestDenied,
/// Indicates that the request could not be processed due to a server error.
/// The request may succeed if you try again.
#[serde(alias = "UNKNOWN_ERROR")]
UnknownError,
/// Indicates that the geocode was successful but returned no results. This
/// may occur if the geocoder was passed a non-existent `address`. This may
/// also occur if the geocoder was passed a `latlng` in a remote location.
#[serde(alias = "ZERO_RESULTS")]
ZeroResults,
} // enum
// -----------------------------------------------------------------------------
impl<'de> Deserialize<'de> for Status {
/// Manual implementation of `Deserialize` for `serde`. This will take
/// advantage of the `phf`-powered `TryFrom` implementation for this type.
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
let string = String::deserialize(deserializer)?;
match Status::try_from(string.as_str()) {
Ok(variant) => Ok(variant),
Err(error) => Err(serde::de::Error::custom(error.to_string()))
} // match
} // fn
} // impl
// -----------------------------------------------------------------------------
impl std::convert::From<&Status> for String {
/// Converts a `Status` enum to a `String` that contains a
/// [status](https://developers.google.com/maps/documentation/geocoding/intro#StatusCodes)
/// code.
fn from(status: &Status) -> String {
match status {
Status::InvalidRequest => String::from("INVALID_REQUEST"),
Status::Ok => String::from("OK"),
Status::OverDailyLimit => String::from("OVER_DAILY_LIMIT"),
Status::OverQueryLimit => String::from("OVER_QUERY_LIMIT"),
Status::RequestDenied => String::from("REQUEST_DENIED"),
Status::UnknownError => String::from("UNKNOWN_ERROR"),
Status::ZeroResults => String::from("ZERO_RESULTS"),
} // match
} // fn
} // impl
// -----------------------------------------------------------------------------
static STATUSES_BY_CODE: phf::Map<&'static str, Status> = phf_map! {
"INVALID_REQUEST" => Status::InvalidRequest,
"OK" => Status::Ok,
"OVER_DAILY_LIMIT" => Status::OverDailyLimit,
"OVER_QUERY_LIMIT" => Status::OverQueryLimit,
"REQUEST_DENIED" => Status::RequestDenied,
"UNKNOWN_ERROR" => Status::UnknownError,
"ZERO_RESULTS" => Status::ZeroResults,
};
impl std::convert::TryFrom<&str> for Status {
// Error definitions are contained in the
// `google_maps\src\geocoding\error.rs` module.
type Error = crate::geocoding::error::Error;
/// Gets a `Status` enum from a `String` that contains a valid
/// [status](https://developers.google.com/maps/documentation/geocoding/intro#StatusCodes)
/// code.
fn try_from(status_code: &str) -> Result<Self, Self::Error> {
STATUSES_BY_CODE
.get(status_code)
.cloned()
.ok_or_else(|| Error::InvalidStatusCode(status_code.to_string()))
} // fn
} // impl
impl std::str::FromStr for Status {
// Error definitions are contained in the
// `google_maps\src\geocoding\error.rs` module.
type Err = crate::geocoding::error::Error;
/// Gets a `Status` enum from a `String` that contains a valid
/// [status](https://developers.google.com/maps/documentation/geocoding/intro#StatusCodes)
/// code.
fn from_str(status_code: &str) -> Result<Self, Self::Err> {
STATUSES_BY_CODE
.get(status_code)
.cloned()
.ok_or_else(|| Error::InvalidStatusCode(status_code.to_string()))
} // fn
} // impl
// -----------------------------------------------------------------------------
impl std::default::Default for Status {
/// Returns a reasonable default variant for the `Status` enum type.
fn default() -> Self {
Status::Ok
} // fn
} // impl
// -----------------------------------------------------------------------------
impl std::fmt::Display for Status {
/// Formats a `Status` enum into a string that is presentable to the end
/// user.
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Status::InvalidRequest => write!(f, "Invalid Request"),
Status::Ok => write!(f, "OK"),
Status::OverDailyLimit => write!(f, "Over Daily Limit"),
Status::OverQueryLimit => write!(f, "Over Query Limit"),
Status::RequestDenied => write!(f, "Request Denied"),
Status::UnknownError => write!(f, "Unknown Error"),
Status::ZeroResults => write!(f, "Zero Results"),
} // match
} // fn
} // impl