[][src]Enum reso_dd::DoorFeatures

pub enum DoorFeatures {
    ENERGYSTARQualifiedDoors,
    FrenchDoors,
    MirroredClosetDoors,
    SlidingDoors,
    StormDoors,
    OpenEnumeration(String),
}

Variants

ENERGYSTARQualifiedDoors

"ENERGY STAR Qualified Doors": The property has ENERGY STAR qualified door(s).

FrenchDoors

"French Doors": The property has doors with glass panes throughout the length of the door.

MirroredClosetDoors

"Mirrored Closet Door(s)": The property has one or more closet doors that have a mirrored surface.

SlidingDoors

"Sliding Doors": The property has sliding doors.

StormDoors

"Storm Door(s)": The property has one or more storm doors.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for DoorFeatures[src]

impl Debug for DoorFeatures[src]

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

impl Eq for DoorFeatures[src]

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

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

impl From<String> for DoorFeatures[src]

impl PartialEq<DoorFeatures> for DoorFeatures[src]

impl ResoEnumeration for DoorFeatures[src]

impl Serialize for DoorFeatures[src]

impl StructuralEq for DoorFeatures[src]

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