[][src]Enum reso_dd::WaterfrontFeatures

pub enum WaterfrontFeatures {
    BeachAccess,
    BeachFront,
    CanalAccess,
    CanalFront,
    Creek,
    Lagoon,
    Lake,
    LakeFront,
    LakePrivileges,
    NavigableWater,
    OceanAccess,
    OceanFront,
    Pond,
    RiverAccess,
    RiverFront,
    Seawall,
    Stream,
    Waterfront,
    OpenEnumeration(String),
}

Variants

BeachAccess

"Beach Access": The property has access to the beach.

BeachFront

"Beach Front": The property is on the beach front.

CanalAccess

"Canal Access": The property has access to the canal(s).

CanalFront

"Canal Front": The property is located on the canal.

Creek

"Creek": The property is either on or near a creek.

Lagoon

"Lagoon": The property is either on or near a lagoon.

Lake

"Lake": The property is either on or near a lake.

LakeFront

"Lake Front": The property is on the lake front.

LakePrivileges

"Lake Privileges": The property includes rights to access the lake.

NavigableWater

"Navigable Water": The water wide, slow and deep enough for water vessels.

OceanAccess

"Ocean Access": The property has access to the ocean.

OceanFront

"Ocean Front": The property is on the ocean front.

Pond

"Pond": The property is on or near a pond.

RiverAccess

"River Access": The property has access to the river.

RiverFront

"River Front": The property is located on the river front.

Seawall

"Seawall": The property is protected by a sea wall or barrier.

Stream

"Stream": The property is on our near a stream.

Waterfront

"Waterfront": The property is located on the waterfront.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for WaterfrontFeatures[src]

impl Debug for WaterfrontFeatures[src]

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

impl Eq for WaterfrontFeatures[src]

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

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

impl From<String> for WaterfrontFeatures[src]

impl PartialEq<WaterfrontFeatures> for WaterfrontFeatures[src]

impl ResoEnumeration for WaterfrontFeatures[src]

impl Serialize for WaterfrontFeatures[src]

impl StructuralEq for WaterfrontFeatures[src]

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