[][src]Enum reso_dd::LaundryFeatures

pub enum LaundryFeatures {
    CommonArea,
    ElectricDryerHookup,
    GasDryerHookup,
    InBasement,
    InBathroom,
    InCarport,
    InGarage,
    InHall,
    InKitchen,
    InUnit,
    Inside,
    LaundryChute,
    LaundryCloset,
    LaundryRoom,
    LowerLevel,
    MainLevel,
    MultipleLocations,
    None,
    Other,
    Outside,
    SeeRemarks,
    Sink,
    UpperLevel,
    WasherHookup,
    OpenEnumeration(String),
}

Variants

CommonArea

"Common Area": Laundry facilities are in a common area.

ElectricDryerHookup

"Electric Dryer Hookup": The property has electric cloths dryer connections.

GasDryerHookup

"Gas Dryer Hookup": The property has gas cloths dryer connections.

InBasement

"In Basement": Laundry is located in the basement.

InBathroom

"In Bathroom": Laundry is located in the bathroom.

InCarport

"In Carport": Laundry is located in the carport.

InGarage

"In Garage": Laundry is located in the garage.

InHall

"In Hall": Laundry is located in the hall.

InKitchen

"In Kitchen": Laundry is located in the kitchen.

InUnit

"In Unit": Laundry is located within the unit.

Inside

"Inside": Laundry is located indoors.

LaundryChute

"Laundry Chute": The property has a laundry chute.

LaundryCloset

"Laundry Closet": The property has a laundry closet.

LaundryRoom

"Laundry Room": The property has a laundry room.

LowerLevel

"Lower Level": Laundry is on the lower level.

MainLevel

"Main Level": Laundry is on the main level.

MultipleLocations

"Multiple Locations": Laundry is in multiple locations.

None

"None": There are no laundry features.

Other

"Other": There are laundry features other than those in this list.

Outside

"Outside": Laundry is located outside.

SeeRemarks

"See Remarks": See remarks for additional information about laundry.

Sink

"Sink": The laundry area has a sink.

UpperLevel

"Upper Level": Laundry is on the upper level.

WasherHookup

"Washer Hookup": The property has a hookups for a cloths washer.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for LaundryFeatures[src]

impl Debug for LaundryFeatures[src]

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

impl Eq for LaundryFeatures[src]

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

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

impl From<String> for LaundryFeatures[src]

impl PartialEq<LaundryFeatures> for LaundryFeatures[src]

impl ResoEnumeration for LaundryFeatures[src]

impl Serialize for LaundryFeatures[src]

impl StructuralEq for LaundryFeatures[src]

impl StructuralPartialEq for LaundryFeatures[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.