[][src]Enum google_maps::geocoding::forward::component::Component

pub enum Component {
    Country(Country),
    PostalCode(String),
    AdministrativeArea(String),
    Locality(String),
    Route(String),
}

The components filter is accepted as an optional parameter if an address is provided. In a Geocoding response, the Geocoding API can return address results restricted to a specific area. You can specify the restriction using the components filter. A filter consists of a list of component:value pairs separated by a pipe (|). Filter values support the same methods of spelling correction and partial matching as other Geocoding requests. If the geocoder finds a partial match for a component filter, the response will contain a partial_match field.

Variants

Country(Country)

Country matches a country name or a two letter ISO 3166-1 country code. The API follows the ISO standard for defining countries, and the filtering works best when using the corresponding ISO code of the country.

PostalCode(String)

Matches postal_code and postal_code_prefix.

AdministrativeArea(String)

Matches all the administrative_area levels.

Locality(String)

Matches against locality and sublocality types.

Route(String)

Matches the long or short name of a route.

Trait Implementations

impl Clone for Component[src]

impl Debug for Component[src]

impl Default for Component[src]

fn default() -> Self[src]

Returns a reasonable default variant for the Component enum type.

impl<'de> Deserialize<'de> for Component[src]

impl Eq for Component[src]

impl<'_> From<&'_ Component> for String[src]

fn from(component: &Component) -> String[src]

Converts a Component struct to a String that contains a component:value pair for filtering results.

impl Hash for Component[src]

impl Ord for Component[src]

impl PartialEq<Component> for Component[src]

impl PartialOrd<Component> for Component[src]

impl Serialize for Component[src]

impl StructuralEq for Component[src]

impl StructuralPartialEq for Component[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,