[][src]Enum reso_dd::SpecialListingConditions

pub enum SpecialListingConditions {
    Auction,
    BankruptcyProperty,
    HUDOwned,
    InForeclosure,
    NoticeOfDefault,
    ProbateListing,
    RealEstateOwned,
    ShortSale,
    Standard,
    ThirdPartyApproval,
    OpenEnumeration(String),
}

Variants

Auction

"Auction": The listing is an auction.

BankruptcyProperty

"Bankruptcy Property": The listed property is currently involved in a bankruptcy.

HUDOwned

"HUD Owned": The listed property is owned, and being sold, by the US Department of Housing and Urban Development.

InForeclosure

"In Foreclosure": The listed property is currently in the process of foreclosure.

NoticeOfDefault

"Notice Of Default": There is a notice of default on the listed property.

ProbateListing

"Probate Listing": The listed property is a probate sale.

RealEstateOwned

"Real Estate Owned": The listed property is currently bank/lender owned.

ShortSale

"Short Sale": The listing is a short sale (short pay) and may require bank approval.

Standard

"Standard": The listing has none of the other conditions in the Special Listing Conditions field.

ThirdPartyApproval

"Third Party Approval": A court or other third party approval is required for the sale to finalize.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for SpecialListingConditions[src]

impl Debug for SpecialListingConditions[src]

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

impl Eq for SpecialListingConditions[src]

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

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

impl From<String> for SpecialListingConditions[src]

impl PartialEq<SpecialListingConditions> for SpecialListingConditions[src]

impl ResoEnumeration for SpecialListingConditions[src]

impl Serialize for SpecialListingConditions[src]

impl StructuralEq for SpecialListingConditions[src]

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