logo
pub enum PlaceType {
Show 142 variants Accounting, Airport, AmusementPark, Aquarium, ArtGallery, Atm, Bakery, Bank, Bar, BeautySalon, BicycleStore, BookStore, BowlingAlley, BusStation, Cafe, Campground, CarDealer, CarRental, CarRepair, CarWash, Casino, Cemetery, Church, CityHall, ClothingStore, ConvenienceStore, Courthouse, Dentist, DepartmentStore, Doctor, DrugStore, Electrician, ElectronicsStore, Embassy, FireStation, Florist, FuneralHome, FurnitureStore, GasStation, GroceryOrSupermarket, Gym, HairCare, HardwareStore, HinduTemple, HomeGoodsStore, Hospital, InsuranceAgency, JewelryStore, Laundry, Lawyer, Library, LightRailStation, LiquorStore, LocalGovernmentOffice, Locksmith, Lodging, MealDelivery, MealTakeaway, Mosque, MovieRental, MovieTheater, MovingCompany, Museum, NightClub, Painter, Park, Parking, PetStore, Pharmacy, Physiotherapist, Plumber, PlusCode, Police, PostOffice, PrimarySchool, RealEstateAgency, Restaurant, RoofingContractor, RvPark, School, SecondarySchool, ShoeStore, ShoppingMall, Spa, Stadium, Storage, Store, SubwayStation, Supermarket, Synagogue, TaxiStand, TouristAttraction, TrainStation, TransitStation, TravelAgency, University, VeterinaryCare, Zoo, AdministrativeAreaLevel1, AdministrativeAreaLevel2, AdministrativeAreaLevel3, AdministrativeAreaLevel4, AdministrativeAreaLevel5, Archipelago, ColloquialArea, Continent, Country, Establishment, Finance, Floor, Food, GeneralContractor, Geocode, Health, Intersection, Locality, NaturalFeature, Neighborhood, PlaceOfWorship, PointOfInterest, Political, PostBox, PostalCode, PostalCodePrefix, PostalCodeSuffix, PostalTown, Premise, Room, Route, StreetAddress, StreetNumber, Sublocality, SublocalityLevel1, SublocalityLevel2, SublocalityLevel3, SublocalityLevel4, SublocalityLevel5, Subpremise, TownSquare, Address, Regions, Cities,
}
Expand description

This specifies the types or categories of a place. For example, a returned location could be a “country” (as in a nation) or it could be a “shopping mall.” Also, a requested place could be a “locality” (a city) or a “street_address” This type helps define the data that is being returned or sought. See Place Types for more information.

Variants

Accounting

Airport

Indicates an airport.

AmusementPark

Aquarium

ArtGallery

Atm

Bakery

Bank

Bar

BeautySalon

BicycleStore

BookStore

BowlingAlley

BusStation

Cafe

Campground

CarDealer

CarRental

CarRepair

CarWash

Casino

Cemetery

Church

CityHall

ClothingStore

ConvenienceStore

Courthouse

Dentist

DepartmentStore

Doctor

DrugStore

Electrician

ElectronicsStore

Embassy

FireStation

Florist

FuneralHome

FurnitureStore

GasStation

GroceryOrSupermarket

Gym

HairCare

HardwareStore

HinduTemple

HomeGoodsStore

Hospital

InsuranceAgency

JewelryStore

Laundry

Lawyer

Library

LightRailStation

LiquorStore

LocalGovernmentOffice

Locksmith

Lodging

MealDelivery

MealTakeaway

Mosque

MovieRental

MovieTheater

MovingCompany

Museum

NightClub

Painter

Park

Indicates a named park.

Parking

PetStore

Pharmacy

Physiotherapist

Plumber

PlusCode

Police

PostOffice

PrimarySchool

RealEstateAgency

Restaurant

RoofingContractor

RvPark

School

SecondarySchool

ShoeStore

ShoppingMall

Spa

Stadium

Storage

Store

SubwayStation

Supermarket

Synagogue

TaxiStand

TouristAttraction

TrainStation

TransitStation

TravelAgency

University

VeterinaryCare

Zoo

AdministrativeAreaLevel1

Indicates a first-order civil entity below the country level. Within the United States, these administrative levels are states. Not all nations exhibit these administrative levels. In most cases, AdministrativeAreaLevel1 short names will closely match ISO 3166-2 subdivisions and other widely circulated lists; however this is not guaranteed as our geocoding results are based on a variety of signals and location data.

AdministrativeAreaLevel2

Indicates a second-order civil entity below the country level. Within the United States, these administrative levels are counties. Not all nations exhibit these administrative levels.

AdministrativeAreaLevel3

Indicates a third-order civil entity below the country level. This type indicates a minor civil division. Not all nations exhibit these administrative levels.

AdministrativeAreaLevel4

Indicates a fourth-order civil entity below the country level. This type indicates a minor civil division. Not all nations exhibit these administrative levels.

AdministrativeAreaLevel5

Indicates a fifth-order civil entity below the country level. This type indicates a minor civil division. Not all nations exhibit these administrative levels.

Archipelago

ColloquialArea

Indicates a commonly-used alternative name for the entity.

Continent

Country

Indicates the national political entity, and is typically the highest order type returned by the Geocoder.

Establishment

Finance

Floor

Food

GeneralContractor

Geocode

Health

Intersection

Indicates a major intersection, usually of two major roads.

Locality

Indicates an incorporated city or town political entity.

NaturalFeature

Indicates a prominent natural feature.

Neighborhood

Indicates a named neighborhood.

PlaceOfWorship

PointOfInterest

Indicates a named point of interest. Typically, these “POI“s are prominent local entities that don’t easily fit in another category, such as “Empire State Building” or “Eiffel Tower”.

Political

Indicates a political entity. Usually, this type indicates a polygon of some civil administration.

PostBox

PostalCode

Indicates a postal code as used to address postal mail within the country.

PostalCodePrefix

PostalCodeSuffix

PostalTown

Premise

Indicates a named location, usually a building or collection of buildings with a common name.

Room

Route

Indicates a named route (such as “US 101”).

StreetAddress

Indicates a precise street address.

StreetNumber

Sublocality

Indicates a first-order civil entity below a locality. For some locations may receive one of the additional types: SublocalityLevel1 to SublocalityLevel5. Each sublocality level is a civil entity. Larger numbers indicate a smaller geographic area.

SublocalityLevel1

SublocalityLevel2

SublocalityLevel3

SublocalityLevel4

SublocalityLevel5

Subpremise

Indicates a first-order entity below a named location, usually a singular building within a collection of buildings with a common name.

TownSquare

Address

Regions

Cities

Implementations

A helper function that converts a Vec<PlaceType> (i.e. an array of PlaceType enum) to a String that contains a comma-delimited list of place types codes.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns a reasonable default variant for the PlaceType enum type.

Manual implementation of Deserialize for serde. This will take advantage of the phf-powered TryFrom implementation for this type.

Formats a PlaceType enum into a string that is presentable to the end user.

Converts a PlaceType enum to a String that contains a place type code.

Gets a PlaceType enum from a String that contains a supported place type code.

The associated error which can be returned from parsing.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Serialize this value into the given Serde serializer. Read more

Gets a PlaceType enum from a String that contains a supported place type code.

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more