[][src]Enum reso_dd::UnitTypeType

pub enum UnitTypeType {
    _1Bedroom,
    _2Bedroom,
    _3Bedroom,
    _4BedroomOrMore,
    Apartments,
    Efficiency,
    Loft,
    ManagersUnit,
    Penthouse,
    Studio,
    OpenEnumeration(String),
}

Variants

_1Bedroom

"1 Bedroom": The type of unit is a 1 bedroom.

_2Bedroom

"2 Bedroom": The type of unit is a 2 bedroom.

_3Bedroom

"3 Bedroom": The type of unit is a 3 bedroom.

_4BedroomOrMore

"4 Bedroom Or More": The type of unit is a 4 or more bedroom.

Apartments

"Apartments": The type of unit is apartments.

Efficiency

"Efficiency": The type of unit is an efficiency.

Loft

"Loft": The type of unit is a loft.

ManagersUnit

"Manager's Unit": The type of unit is a manager's unit.

Penthouse

"Penthouse": The type of unit is a penthouse.

Studio

"Studio": The type of unit is a studio.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for UnitTypeType[src]

impl Debug for UnitTypeType[src]

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

impl Eq for UnitTypeType[src]

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

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

impl From<String> for UnitTypeType[src]

impl PartialEq<UnitTypeType> for UnitTypeType[src]

impl ResoEnumeration for UnitTypeType[src]

impl Serialize for UnitTypeType[src]

impl StructuralEq for UnitTypeType[src]

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