[][src]Enum reso_dd::Furnished

pub enum Furnished {
    Furnished,
    Negotiable,
    Partially,
    Unfurnished,
    OpenEnumeration(String),
}

Variants

Furnished

"Furnished": The dwelling being leased is furnished.

Negotiable

"Negotiable": The property may be furnished or left unfurnished at the lessor's request. Contact the listing agent/office to discuss options and cost differences.

Partially

"Partially": The dwelling being leased is partially furnished.

Unfurnished

"Unfurnished": The dwelling being leased is not furnished.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Furnished[src]

impl Debug for Furnished[src]

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

impl Eq for Furnished[src]

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

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

impl From<String> for Furnished[src]

impl PartialEq<Furnished> for Furnished[src]

impl ResoEnumeration for Furnished[src]

impl Serialize for Furnished[src]

impl StructuralEq for Furnished[src]

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