[][src]Enum reso_dd::SpaFeatures

pub enum SpaFeatures {
    AboveGround,
    Bath,
    Community,
    Fiberglass,
    Gunite,
    Heated,
    InGround,
    None,
    Private,
    SeeRemarks,
    OpenEnumeration(String),
}

Variants

AboveGround

"Above Ground": The spa is not built into the ground.

Bath

"Bath": The bath has a built in spa/jets.

Community

"Community": The property has access to a community spa.

Fiberglass

"Fiberglass": The spa is lined or made of fiberglass.

Gunite

"Gunite": The spa is lined with gunite.

Heated

"Heated": The spa is heated.

InGround

"In Ground": The spa is built into the ground.

None

"None": The property has no spa.

Private

"Private": The spa is privately owned or is secluded.

SeeRemarks

"See Remarks": See the remarks fields for more information about the spa.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for SpaFeatures[src]

impl Debug for SpaFeatures[src]

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

impl Eq for SpaFeatures[src]

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

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

impl From<String> for SpaFeatures[src]

impl PartialEq<SpaFeatures> for SpaFeatures[src]

impl ResoEnumeration for SpaFeatures[src]

impl Serialize for SpaFeatures[src]

impl StructuralEq for SpaFeatures[src]

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