[][src]Enum reso_dd::DevelopmentStatus

pub enum DevelopmentStatus {
    Completed,
    FinishedLots,
    Other,
    Proposed,
    RawLand,
    RoughGrade,
    SeeRemarks,
    SitePlanApproved,
    SitePlanFiled,
    UnderConstruction,
    OpenEnumeration(String),
}

Variants

Completed

"Completed": The development of the land is complete.

FinishedLots

"Finished Lot(s)": The development of the land is finished.

Other

"Other": The development status of the land is something other than those options in this list.

Proposed

"Proposed": The development of the land is in the proposal phase.

RawLand

"Raw Land": The land is raw and undeveloped.

RoughGrade

"Rough Grade": The development of the last is in the rough grade phase.

SeeRemarks

"See Remarks": See the Public or Private remarks for details on the development status of the land.

SitePlanApproved

"Site Plan Approved": The site plan has been approved for the development.

SitePlanFiled

"Site Plan Filed": The site plan has been filed for the development.

UnderConstruction

"Under Construction": There is construction in progress at the development.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for DevelopmentStatus[src]

impl Debug for DevelopmentStatus[src]

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

impl Eq for DevelopmentStatus[src]

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

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

impl From<String> for DevelopmentStatus[src]

impl PartialEq<DevelopmentStatus> for DevelopmentStatus[src]

impl ResoEnumeration for DevelopmentStatus[src]

impl Serialize for DevelopmentStatus[src]

impl StructuralEq for DevelopmentStatus[src]

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