[][src]Enum reso_dd::PropertyCondition

pub enum PropertyCondition {
    Fixer,
    NewConstruction,
    UnderConstruction,
    UpdatedRemodeled,
    OpenEnumeration(String),
}

Variants

Fixer

"Fixer": The property is a "fixer" or property in need of moderate or extensive repair.

NewConstruction

"New Construction": The property is newly built.

UnderConstruction

"Under Construction": The property is still under construction and building has not been completed.

UpdatedRemodeled

"Updated/Remodeled": The property has been remolded or updated is some fashion.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for PropertyCondition[src]

impl Debug for PropertyCondition[src]

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

impl Eq for PropertyCondition[src]

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

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

impl From<String> for PropertyCondition[src]

impl PartialEq<PropertyCondition> for PropertyCondition[src]

impl ResoEnumeration for PropertyCondition[src]

impl Serialize for PropertyCondition[src]

impl StructuralEq for PropertyCondition[src]

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