[][src]Enum reso_dd::FrontageType

pub enum FrontageType {
    BayHarbor,
    GolfCourse,
    LagoonEstuary,
    Lakefront,
    Oceanfront,
    Other,
    River,
    SeeRemarks,
    Waterfront,
    OpenEnumeration(String),
}

Variants

BayHarbor

"Bay/Harbor": The property fronts to a bay or harbor.

GolfCourse

"Golf Course": The property fronts to a golf course.

LagoonEstuary

"Lagoon/Estuary": The property fronts to a lagoon or estuary.

Lakefront

"Lakefront": The property is on a lakefront.

Oceanfront

"Oceanfront": The property is on an oceanfront.

Other

"Other": The frontage of the property is something other than the options in this list.

River

"River": The property is on a riverfront.

SeeRemarks

"See Remarks": See the Public or Private Remarks for details on the frontage of the property.

Waterfront

"Waterfront": The property is on a waterfront.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for FrontageType[src]

impl Debug for FrontageType[src]

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

impl Eq for FrontageType[src]

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

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

impl From<String> for FrontageType[src]

impl PartialEq<FrontageType> for FrontageType[src]

impl ResoEnumeration for FrontageType[src]

impl Serialize for FrontageType[src]

impl StructuralEq for FrontageType[src]

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