[][src]Enum reso_dd::PropertyType

pub enum PropertyType {
    BusinessOpportunity,
    CommercialLease,
    CommercialSale,
    Farm,
    Land,
    ManufacturedInPark,
    Residential,
    ResidentialIncome,
    ResidentialLease,
    OpenEnumeration(String),
}

Variants

BusinessOpportunity

"Business Opportunity": The property type of the listing is Business Opportunity. The property type can be references as a class or a field within a single class structure.

CommercialLease

"Commercial Lease": The property type of the listing is Commercial Lease. The property type can be references as a class or a field within a single class structure.

CommercialSale

"Commercial Sale": The property type of the listing is Commercial Sale. The property type can be references as a class or a field within a single class structure.

Farm

"Farm": The property type of the listing is Farm. The property type can be references as a class or a field within a single class structure.

Land

"Land": The property type of the listing is Land. The property type can be references as a class or a field within a single class structure.

ManufacturedInPark

"Manufactured In Park": The property type of the listing is Manufactured in Park. The property type can be references as a class or a field within a single class structure.

Residential

"Residential": The property type of the listing is Residential. The property type can be references as a class or a field within a single class structure.

ResidentialIncome

"Residential Income": The property type of the listing is Residential Income. The property type can be references as a class or a field within a single class structure.

ResidentialLease

"Residential Lease": The property type of the listing is Residential Lease. The property type can be references as a class or a field within a single class structure.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for PropertyType[src]

impl Debug for PropertyType[src]

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

impl Eq for PropertyType[src]

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

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

impl From<String> for PropertyType[src]

impl PartialEq<PropertyType> for PropertyType[src]

impl ResoEnumeration for PropertyType[src]

impl Serialize for PropertyType[src]

impl StructuralEq for PropertyType[src]

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