[][src]Enum reso_dd::WaterSource

pub enum WaterSource {
    Cistern,
    None,
    Other,
    Private,
    Public,
    SeeRemarks,
    SharedWell,
    Spring,
    Well,
    OpenEnumeration(String),
}

Variants

Cistern

"Cistern": The property's source of water has/includes a cistern.

None

"None": The property has no current source of water.

Other

"Other": The property has a source of water other than those listed.

Private

"Private": The property's source of water is private.

Public

"Public": The property's source of water is public.

SeeRemarks

"See Remarks": See the listing's remarks for details on the property's water source.

SharedWell

"Shared Well": The property's source of water has/includes a shared well.

Spring

"Spring": The property's source of water has/includes a spring.

Well

"Well": The property's source of water has/includes a well.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for WaterSource[src]

impl Debug for WaterSource[src]

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

impl Eq for WaterSource[src]

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

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

impl From<String> for WaterSource[src]

impl PartialEq<WaterSource> for WaterSource[src]

impl ResoEnumeration for WaterSource[src]

impl Serialize for WaterSource[src]

impl StructuralEq for WaterSource[src]

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