[][src]Enum reso_dd::Basement

pub enum Basement {
    Apartment,
    BathStubbed,
    Block,
    Concrete,
    CrawlSpace,
    Daylight,
    DirtFloor,
    ExteriorEntry,
    Finished,
    FrenchDrain,
    Full,
    InteriorEntry,
    None,
    Other,
    Partial,
    PartiallyFinished,
    StorageSpace,
    SumpPump,
    Unfinished,
    WalkOutAccess,
    WalkUpAccess,
    OpenEnumeration(String),
}

Variants

Apartment

"Apartment": The basement is setup as an apartment living space.

BathStubbed

"Bath/Stubbed": The basement is stubbed for a bathroom.

Block

"Block": The basement has block construction.

Concrete

"Concrete": The basement has a concrete floor and/or walls.

CrawlSpace

"Crawl Space": The basement is/has a crawl space.

Daylight

"Daylight": The basement has natural lighting.

DirtFloor

"Dirt Floor": The basement has a dirt floor.

ExteriorEntry

"Exterior Entry": The basement has an exterior entry.

Finished

"Finished": The basement is finished to a given standard of competition. Examples may include underlayment and flooring; walls are framed, insulated, drywalled and painted; etc.

FrenchDrain

"French Drain": The basement has a French drain.

Full

"Full": The basement fills the entire space under the house.

InteriorEntry

"Interior Entry": The basement has an interior entry.

None

"None": The property has no basement.

Other

"Other": The basement has features or attributes other than those listed in this field.

Partial

"Partial": The basement partially fills the space under the house.

PartiallyFinished

"Partially Finished": The basement is partially finished. Some finishing work is done but not all. Examples may include underlayment and flooring; walls are framed, insulated, drywalled and painted; etc.

StorageSpace

"Storage Space": The basement has storage space.

SumpPump

"Sump Pump": The basement has a sump pump.

Unfinished

"Unfinished": The basement is unfinished.

WalkOutAccess

"Walk-Out Access": A walk-out basement is a structure where the basement space directly accessible from the outside with the entryway level with the ground.

WalkUpAccess

"Walk-Up Access": A walk-up basement is a structure where the basement space directly accessible from the outside with the entryway below ground and usually exterior stairs leading up to ground level.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Basement[src]

impl Debug for Basement[src]

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

impl Eq for Basement[src]

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

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

impl From<String> for Basement[src]

impl PartialEq<Basement> for Basement[src]

impl ResoEnumeration for Basement[src]

impl Serialize for Basement[src]

impl StructuralEq for Basement[src]

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