[][src]Enum reso_dd::BuyerFinancing

pub enum BuyerFinancing {
    Assumed,
    Cash,
    Contract,
    Conventional,
    FHA,
    FHA203b,
    FHA203k,
    Other,
    Private,
    SellerFinancing,
    TrustDeed,
    USDA,
    VA,
    OpenEnumeration(String),
}

Variants

Assumed

"Assumed": The buyer assumed a current form of financing.

Cash

"Cash": The buyer paid cash for the property.

Contract

"Contract": The purchase of a property involves an agreement to perform services, provide product, share of income, or some other agreement as the method of payment for the property.

Conventional

"Conventional": The buyer is using conventional financing to purchase the home.

FHA

"FHA": A loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration.

FHA203b

"FHA 203(b)": The basic home mortgage loan from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration.

FHA203k

"FHA 203(k)": A loan, for the rehabilitation and repair of single family residence, from an approved provider that follows the guidelines of, and is insured by, the Federal Housing Administration.

Other

"Other": The buyer is using another form of financing that is not included in the options provided in this list.

Private

"Private": Financing is provided by a private party.

SellerFinancing

"Seller Financing": The seller is providing financing to the buyer.

TrustDeed

"Trust Deed": Financing where title of the property is placed with a trustee who secures payment of the loan for a beneficiary.

USDA

"USDA": A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Agriculture.

VA

"VA": A loan from an approved provider that follows the guidelines of, and is insured by, the US Department of Veteran's Affairs.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for BuyerFinancing[src]

impl Debug for BuyerFinancing[src]

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

impl Eq for BuyerFinancing[src]

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

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

impl From<String> for BuyerFinancing[src]

impl PartialEq<BuyerFinancing> for BuyerFinancing[src]

impl ResoEnumeration for BuyerFinancing[src]

impl Serialize for BuyerFinancing[src]

impl StructuralEq for BuyerFinancing[src]

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