Enum google_geocoding::StatusCode[][src]

pub enum StatusCode {
    Ok,
    ZeroResults,
    OverQueryLimit,
    RequestDenied,
    InvalidRequest,
    UnknownError,
}

Status codes for the geocode API

Variants

Indicates that no errors occurred; the address was successfully parsed and at least one geocode was returned.

Indicates that the geocode was successful but returned no results. This may occur if the geocoder was passed a non-existent address.

Indicates that you are over your quota.

Indicates that your request was denied

generally indicates that the query (address, components or latlng) is missing.

Indicates that the request could not be processed due to a server error. The request may succeed if you try again.

Trait Implementations

impl Debug for StatusCode
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for StatusCode

impl Sync for StatusCode