[][src]Enum reso_dd::CommunityFeatures

pub enum CommunityFeatures {
    AirportRunway,
    Clubhouse,
    Curbs,
    Fishing,
    FitnessCenter,
    Gated,
    Golf,
    Lake,
    None,
    Other,
    Park,
    Playground,
    Pool,
    Racquetball,
    Restaurant,
    Sidewalks,
    Stables,
    StreetLights,
    Suburban,
    TennisCourts,
    OpenEnumeration(String),
}

Variants

AirportRunway

"Airport/Runway": The community has an airport or runway.

Clubhouse

"Clubhouse": The community has a clubhouse.

Curbs

"Curbs": The community streets have curbs.

Fishing

"Fishing": The community has places to go fishing.

FitnessCenter

"Fitness Center": The community has a fitness center.

Gated

"Gated": The community is gated.

Golf

"Golf": The community has golfing.

Lake

"Lake": The community has a lake.

None

"None": The community includes no additional features.

Other

"Other": The community has features beyond those listed in this field.

Park

"Park": The community has a park.

Playground

"Playground": The community has a playground.

Pool

"Pool": The community has a pool.

Racquetball

"Racquetball": The community has racquetball facilities.

Restaurant

"Restaurant": The community has a restaurant.

Sidewalks

"Sidewalks": The community streets have sidewalks.

Stables

"Stable(s)": The community has horse stables.

StreetLights

"Street Lights": The community streets have lighting.

Suburban

"Suburban": The community is a suburban setting.

TennisCourts

"Tennis Court(s)": The community has tennis court(s).

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for CommunityFeatures[src]

impl Debug for CommunityFeatures[src]

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

impl Eq for CommunityFeatures[src]

impl<'_> From<&'_ str> for CommunityFeatures[src]

impl<'a> From<&'a CommunityFeatures> for &'a str[src]

impl From<String> for CommunityFeatures[src]

impl PartialEq<CommunityFeatures> for CommunityFeatures[src]

impl ResoEnumeration for CommunityFeatures[src]

impl Serialize for CommunityFeatures[src]

impl StructuralEq for CommunityFeatures[src]

impl StructuralPartialEq for CommunityFeatures[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: Deserialize<'de>, 
[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.