[][src]Enum reso_dd::FireplaceFeatures

pub enum FireplaceFeatures {
    Basement,
    Bath,
    Bedroom,
    BlowerFan,
    Circulating,
    Decorative,
    Den,
    DiningRoom,
    DoubleSided,
    Electric,
    EPACertifiedWoodStove,
    EPAQualifiedFireplace,
    FactoryBuilt,
    FamilyRoom,
    FirePit,
    FreeStanding,
    Gas,
    GasLog,
    GasStarter,
    GlassDoors,
    GreatRoom,
    Heatilator,
    Insert,
    Kitchen,
    Library,
    LivingRoom,
    Masonry,
    MasterBedroom,
    Metal,
    None,
    Other,
    Outside,
    PelletStove,
    Propane,
    RaisedHearth,
    RecreationRoom,
    SealedCombustion,
    SeeRemarks,
    SeeThrough,
    Stone,
    Ventless,
    WoodBurning,
    WoodBurningStove,
    ZeroClearance,
    OpenEnumeration(String),
}

Variants

Basement

"Basement": There is a fireplace in the basement.

Bath

"Bath": The property includes a bathroom fireplace.

Bedroom

"Bedroom": The property has a bedroom fireplace.

BlowerFan

"Blower Fan": The fireplace has a blower fan.

Circulating

"Circulating": The fireplace has a circulation system.

Decorative

"Decorative": The property has a decorative fireplace.

Den

"Den": The property has a fireplace in the den.

DiningRoom

"Dining Room": The property has a fireplace in the dining room.

DoubleSided

"Double Sided": The property has a double sided fireplace. Double sided fireplaces often have openings in adjacent rooms.

Electric

"Electric": The fireplace is electric.

EPACertifiedWoodStove

"EPA Certified Wood Stove": The property has an EPA certified wood stove.

EPAQualifiedFireplace

"EPA Qualified Fireplace": The property has an EPA certified fireplace.

FactoryBuilt

"Factory Built": The fireplace is factory built and later installed into the property.

FamilyRoom

"Family Room": There is a fireplace in the family room.

FirePit

"Fire Pit": The property has a fire pit.

FreeStanding

"Free Standing": The fireplace is free standing, rather than built-in.

Gas

"Gas": The fireplace burns gas.

GasLog

"Gas Log": The gas fireplace has a gas log.

GasStarter

"Gas Starter": The fireplace has a gas started, but also burns wood or other fuels.

GlassDoors

"Glass Doors": The fireplace has glass doors.

GreatRoom

"Great Room": There is a fireplace in the great room.

Heatilator

"Heatilator": The fireplace has a built in ventilation system used to circulate heat.

Insert

"Insert": A fireplace insert is a device inserted into an existing masonry or prefabricated fireplace. Inserts are used for their aesthetic, insulating, circulating or other features.

Kitchen

"Kitchen": The property has a fireplace in the kitchen.

Library

"Library": The property has a fireplace in the library.

LivingRoom

"Living Room": The property has a fireplace in the living room.

Masonry

"Masonry": The fireplace is made of masonry.

MasterBedroom

"Master Bedroom": The property has a fireplace in the master bedroom.

Metal

"Metal": The fireplace is make of metal.

None

"None": The property has no fireplace.

Other

"Other": The fireplace has features that are not included in this list.

Outside

"Outside": The property has an outdoor fireplace.

PelletStove

"Pellet Stove": The property has a stove that burns compressed wood or biomass pellets to generate heat.

Propane

"Propane": The fireplace burns propane.

RaisedHearth

"Raised Hearth": The fireplace has a raised hearth.

RecreationRoom

"Recreation Room": The property has a fireplace in the recreation room.

SealedCombustion

"Sealed Combustion": The fireplace has sealed combustion chamber.

SeeRemarks

"See Remarks": See the remarks fields for additional information about the fireplace(s).

SeeThrough

"See Through": The property has a see-through fireplace, usually positioned between two rooms.

Stone

"Stone": The property has a fireplace made with stone.

Ventless

"Ventless": The property has a ventless fireplace.

WoodBurning

"Wood Burning": The fireplace is wood burning.

WoodBurningStove

"Wood Burning Stove": The property includes a wood burning stove.

ZeroClearance

"Zero Clearance": The property has a zero clearance fireplace. Zero clearance fireplaces are built to be placed almost directly against combustible materials like wood, walls, or paneling.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for FireplaceFeatures[src]

impl Debug for FireplaceFeatures[src]

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

impl Eq for FireplaceFeatures[src]

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

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

impl From<String> for FireplaceFeatures[src]

impl PartialEq<FireplaceFeatures> for FireplaceFeatures[src]

impl ResoEnumeration for FireplaceFeatures[src]

impl Serialize for FireplaceFeatures[src]

impl StructuralEq for FireplaceFeatures[src]

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