[][src]Enum reso_dd::Utilities

pub enum Utilities {
    CableAvailable,
    CableConnected,
    CableNotAvailable,
    ElectricityAvailable,
    ElectricityConnected,
    ElectricityNotAvailable,
    NaturalGasAvailable,
    NaturalGasConnected,
    NaturalGasNotAvailable,
    None,
    Other,
    PhoneAvailable,
    PhoneConnected,
    PhoneNotAvailable,
    Propane,
    SeeRemarks,
    SewerAvailable,
    SewerConnected,
    SewerNotAvailable,
    UndergroundUtilities,
    WaterAvailable,
    WaterConnected,
    WaterNotAvailable,
    OpenEnumeration(String),
}

Variants

CableAvailable

"Cable Available": The property has cable available but is not connected.

CableConnected

"Cable Connected": Cable service is physically connected, but not necessarily paid.

CableNotAvailable

"Cable Not Available": Cable is not available in the area of the property.

ElectricityAvailable

"Electricity Available": Electricity is available from the public utility but not connected.

ElectricityConnected

"Electricity Connected": Electricity from the public utility is available and connected, but not necessarily paid.

ElectricityNotAvailable

"Electricity Not Available": Electricity from the public utility is not available. An independent source of electricity is the only option.

NaturalGasAvailable

"Natural Gas Available": Natural gas is available from the public utility but not connected.

NaturalGasConnected

"Natural Gas Connected": Natural gas from the public utility is available and connected, but not necessarily paid.

NaturalGasNotAvailable

"Natural Gas Not Available": Natural gas from the public utility is not available. An independent source of gas is the only option. i.e. propane.

None

"None": There are no public utilities currently available or connected.

Other

"Other": There are utilities other than those listed.

PhoneAvailable

"Phone Available": The property has telephone service available but is not connected.

PhoneConnected

"Phone Connected": Telephone service is physically connected, but not necessarily paid.

PhoneNotAvailable

"Phone Not Available": Telephone service is not available in the area of the property.

Propane

"Propane": The property has a propane system.

SeeRemarks

"See Remarks": See remarks for details about the public or other utilities available/installed at the property.

SewerAvailable

"Sewer Available": Sewer service is available from the public utility but not connected.

SewerConnected

"Sewer Connected": Sewer service from the public utility is available and connected, but not necessarily paid.

SewerNotAvailable

"Sewer Not Available": Sewer service from the public utility is not available. An independent alternative to sewer is the only option. i.e. septic.

UndergroundUtilities

"Underground Utilities": All or some of the utilities are run underground.

WaterAvailable

"Water Available": Water service is available from the public utility but not connected.

WaterConnected

"Water Connected": Water service from the public utility is available and connected, but not necessarily paid.

WaterNotAvailable

"Water Not Available": Water service from the public utility is not available. An independent source for water is the only option. i.e. well.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Utilities[src]

impl Debug for Utilities[src]

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

impl Eq for Utilities[src]

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

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

impl From<String> for Utilities[src]

impl PartialEq<Utilities> for Utilities[src]

impl ResoEnumeration for Utilities[src]

impl Serialize for Utilities[src]

impl StructuralEq for Utilities[src]

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