[][src]Enum reso_dd::PatioAndPorchFeatures

pub enum PatioAndPorchFeatures {
    Awnings,
    Covered,
    Deck,
    Enclosed,
    FrontPorch,
    GlassEnclosed,
    None,
    Other,
    Patio,
    Porch,
    RearPorch,
    Screened,
    SeeRemarks,
    SidePorch,
    Terrace,
    WrapAround,
    OpenEnumeration(String),
}

Variants

Awnings

"Awning(s)": The property has awning(s).

Covered

"Covered": The property has a covered patio or porch.

Deck

"Deck": The property has a deck.

Enclosed

"Enclosed": The property has an enclosed patio or porch.

FrontPorch

"Front Porch": The property has a front porch.

GlassEnclosed

"Glass Enclosed": The property has a glass enclosed patio or porch.

None

"None": The property has no patio or porch.

Other

"Other": The property has a patio or porch feature other than what's included in this list.

Patio

"Patio": The property has a patio.

Porch

"Porch": The property has a porch.

RearPorch

"Rear Porch": The property has a rear porch.

Screened

"Screened": The property has screened patio or porch.

SeeRemarks

"See Remarks": See the remarks fields for more information on the patio or porch features of the property.

SidePorch

"Side Porch": The property has a side porch.

Terrace

"Terrace": The property has a terrace.

WrapAround

"Wrap Around": The property has wrap around patio or porch.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for PatioAndPorchFeatures[src]

impl Debug for PatioAndPorchFeatures[src]

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

impl Eq for PatioAndPorchFeatures[src]

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

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

impl From<String> for PatioAndPorchFeatures[src]

impl PartialEq<PatioAndPorchFeatures> for PatioAndPorchFeatures[src]

impl ResoEnumeration for PatioAndPorchFeatures[src]

impl Serialize for PatioAndPorchFeatures[src]

impl StructuralEq for PatioAndPorchFeatures[src]

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