[][src]Enum reso_dd::StructureType

pub enum StructureType {
    Cabin,
    Dock,
    Duplex,
    Flex,
    HotelMotel,
    House,
    Industrial,
    ManufacturedHouse,
    MixedUse,
    MultiFamily,
    None,
    Office,
    Quadruplex,
    Retail,
    Townhouse,
    Triplex,
    Warehouse,
    OpenEnumeration(String),
}

Variants

Cabin

"Cabin": A single family residence that may have limited utilities and rooms.

Dock

"Dock": A floating or pillar supported structure over water used to park water craft.

Duplex

"Duplex": A multi family structure with two independent units sharing a common roof.

Flex

"Flex": A commercial property that is designed to be used in different ways. e.g. Office, Retail or Warehouse.

HotelMotel

"Hotel/Motel": A commercial structure designed to be a hotel or motel.

House

"House": A single family residence on real property either attached or detached from another structure. A house may be modular (aka prefabricated), but not a manufactured home with serial/license number.

Industrial

"Industrial": A commercial structure designed for industrial use.

ManufacturedHouse

"Manufactured House": A factory built house that is transported to the lot. A manufactured home will have a serial/license number, where prefabricated (modular) homes are classified with stick built as "House" in this list.

MixedUse

"Mixed Use": The property is designed be used in more than one way. This is typically a combination of residential and commercial space. e.g. a dwelling over a retail space.

MultiFamily

"Multi Family": A structure or complex with 5 or more units that are individual dwellings.

None

"None": The property has no structure.

Office

"Office": A commercial structure designed to be used as office space.

Quadruplex

"Quadruplex": A multi family structure with four independent units sharing a common roof.

Retail

"Retail": A commercial structure designed to be used for retail space.

Townhouse

"Townhouse": A dwelling unit, generally having two or more floors and attached to other similar units via party walls.

Triplex

"Triplex": A multi family structure with three independent units sharing a common roof.

Warehouse

"Warehouse": A commercial structure designed for warehousing.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for StructureType[src]

impl Debug for StructureType[src]

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

impl Eq for StructureType[src]

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

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

impl From<String> for StructureType[src]

impl PartialEq<StructureType> for StructureType[src]

impl ResoEnumeration for StructureType[src]

impl Serialize for StructureType[src]

impl StructuralEq for StructureType[src]

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