Struct google_geocoding::DegeocodeQuery[][src]

pub struct DegeocodeQuery { /* fields omitted */ }

A query for an address

Methods

impl DegeocodeQuery
[src]

Creates a new address query

The language in which to return results.

A filter of one or more location types.

If the parameter contains multiple location types, the API returns all addresses that match any of the types.

A note about processing: The location_type parameter does not restrict the search to the specified location type(s). Rather, the location_type acts as a post-search filter: the API fetches all results for the specified latlng, then discards those results that do not match the specified location type(s).

Note: This parameter is available only for requests that include an API key or a client ID.

A filter of one or more address types.

If the parameter contains multiple address types, the API returns all addresses that match any of the types.

A note about processing: The result_type parameter does not restrict the search to the specified address type(s). Rather, the result_type acts as a post-search filter: the API fetches all results for the specified latlng, then discards those results that do not match the specified address type(s).

Note: This parameter is available only for requests that include an API key or a client ID.

Trait Implementations

impl Debug for DegeocodeQuery
[src]

Formats the value using the given formatter. Read more

impl<T> From<T> for DegeocodeQuery where
    Coordinates: From<T>, 
[src]

Performs the conversion.

Auto Trait Implementations