[][src]Enum reso_dd::Electric

pub enum Electric {
    _100AmpService,
    _150AmpService,
    _200PlusAmpService,
    _220Volts,
    _220VoltsForSpa,
    _220VoltsinGarage,
    _220VoltsinKitchen,
    _220VoltsinLaundry,
    _220VoltsinWorkshop,
    _440Volts,
    CircuitBreakers,
    EnergyStorageDevice,
    Fuses,
    Generator,
    NetMeter,
    PhotovoltaicsSellerOwned,
    PhotovoltaicsThirdPartyOwned,
    PreWiredforRenewables,
    ReadyforRenewables,
    Underground,
    WindTurbineSellerOwned,
    WindTurbineThirdPartyOwned,
    OpenEnumeration(String),
}

Variants

_100AmpService

"100 Amp Service": The electrical features of the property include 100 amp service.

_150AmpService

"150 Amp Service": The electrical features of the property include 150 amp service.

_200PlusAmpService

"200+ Amp Service": The electrical features of the property include 200+ amp service.

_220Volts

"220 Volts": The electrical features of the property include 220 volts.

_220VoltsForSpa

"220 Volts For Spa": The electrical features of the property include 220 volts for spa.

_220VoltsinGarage

"220 Volts in Garage": The electrical features of the property include 220 volts in garage.

_220VoltsinKitchen

"220 Volts in Kitchen": The electrical features of the property include 220 volts in kitchen.

_220VoltsinLaundry

"220 Volts in Laundry": The electrical features of the property include 220 volts in laundry.

_220VoltsinWorkshop

"220 Volts in Workshop": The electrical features of the property include 220 volts in workshop.

_440Volts

"440 Volts": The electrical features of the property include 440 volts.

CircuitBreakers

"Circuit Breakers": The electrical features of the property include circuit breakers.

EnergyStorageDevice

"Energy Storage Device": Device(s) that capture energy at one time to be used at a later time. Most commonly these refer to single or groups of stand-alone batteries, such as could be used as back-up power, but it also might include flywheels or other devices to store power.

Fuses

"Fuses": The electrical features of the property include fuses.

Generator

"Generator": The electrical features of the property include generator.

NetMeter

"Net Meter": Net metering is an electric service that allows electricity generated on a consumer’s site (“on-site”) to offset that consumer’s use. This generation can include (generally small) renewable energy facilities (such as wind, solar power, fuel cells or hydro). Net meters might also be used with energy storage devices such as batteries (stand alone or for electric vehicles). Net meters can “spin backwards” such that at the end of the billing period, the consumer only pays for its use, less what it produced (i.e., the “net”).

PhotovoltaicsSellerOwned

"Photovoltaics Seller Owned": The electrical features of the property include a solar photovoltaic system that is owned by the seller.

PhotovoltaicsThirdPartyOwned

"Photovoltaics Third-Party Owned": The electrical features of the property include a solar photovoltaic system owned by a third party. This is typically a lease but may be some other arrangement where the property owner does not own the photovoltaic system.

PreWiredforRenewables

"Pre-Wired for Renewables": Indicates the electric infrastructure on the property has been extended to more easily incorporate an on-site electric generation facility in the future. This would often include, for example, installing conduit and wire from the generation facility to the electric panel, designating circuits on the panel for that generation, and/or leaving room near the panel for future components, such as an inverter.

ReadyforRenewables

"Ready for Renewables": Indicates a comprehensive infrastructure is in place on the property to more easily incorporate an on-site electric generation facility in the future. Can be confirmed via supporting documentation such as a checklist provided by the DOE Zero Energy Ready Homes program. Solar-PV ready, for example, would often include extensive efficiency measures such as insulation and appliances, architectural drawings that design for a clear roof space, installing conduit from the attic to the electric panel, dedicated circuits on the electric panel, and leaving room near the panel for future components of a solar electric system, such as an inverter. Local requirements may vary. (source: DOE Zero Energy Ready Home http://energy.gov/sites/prod/files/2015/05/f22/PV-Ready%20Checklist.pdf )

Underground

"Underground": The electrical features of the property include underground.

WindTurbineSellerOwned

"Wind Turbine Seller Owned": A wind turbine is provided on the property to generate electricity. Seller owned turbines are typically considered real property and can be transferred with the property.

WindTurbineThirdPartyOwned

"Wind Turbine Third-Party Owned": A wind turbine is provided on the property to generate electricity. The homeowner enters a lease agreement with the owner of the wind turbine(s). Third-Party Owned turbines indicate a lease or a Power Purchase Agreement (PPA) exists. The lease/PPA can often be transferred but the financing company has to agree. See CurrentFinancing field for important further definition of these models.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Electric[src]

impl Debug for Electric[src]

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

impl Eq for Electric[src]

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

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

impl From<String> for Electric[src]

impl PartialEq<Electric> for Electric[src]

impl ResoEnumeration for Electric[src]

impl Serialize for Electric[src]

impl StructuralEq for Electric[src]

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