[][src]Enum reso_dd::Sewer

pub enum Sewer {
    AerobicSeptic,
    Cesspool,
    EngineeredSeptic,
    HoldingTank,
    MoundSeptic,
    None,
    Other,
    PercTestOnFile,
    PercTestRequired,
    PrivateSewer,
    PublicSewer,
    SepticNeeded,
    SepticTank,
    SharedSeptic,
    Unknown,
    OpenEnumeration(String),
}

Variants

AerobicSeptic

"Aerobic Septic": The property has an aerobic septic.

Cesspool

"Cesspool": The property has a cesspool.

EngineeredSeptic

"Engineered Septic": The property has an engineered septic.

HoldingTank

"Holding Tank": The property has a holding tank.

MoundSeptic

"Mound Septic": The property has a mound septic.

None

"None": The property has no sewer, septic or cesspool.

Other

"Other": The property has a system other than sewer, sceptic or cesspool in this list.

PercTestOnFile

"Perc Test On File": The property has a perc test on file.

PercTestRequired

"Perc Test Required": The property requires a perc test.

PrivateSewer

"Private Sewer": The property has a private sewer.

PublicSewer

"Public Sewer": The property has a public sewer.

SepticNeeded

"Septic Needed": The property needs a septic system.

SepticTank

"Septic Tank": The property has a septic tank.

SharedSeptic

"Shared Septic": The property has a shared septic.

Unknown

"Unknown": The property's sewer/septic is unknown.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Sewer[src]

impl Debug for Sewer[src]

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

impl Eq for Sewer[src]

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

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

impl From<String> for Sewer[src]

impl PartialEq<Sewer> for Sewer[src]

impl ResoEnumeration for Sewer[src]

impl Serialize for Sewer[src]

impl StructuralEq for Sewer[src]

impl StructuralPartialEq for Sewer[src]

Auto Trait Implementations

impl RefUnwindSafe for Sewer

impl Send for Sewer

impl Sync for Sewer

impl Unpin for Sewer

impl UnwindSafe for Sewer

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.