[][src]Enum reso_dd::PossibleUse

pub enum PossibleUse {
    Agricultural,
    Cattle,
    Commercial,
    Dairy,
    Development,
    Farm,
    Fishery,
    Grazing,
    HighwayTouristService,
    Horses,
    Hunting,
    Industrial,
    Investment,
    Livestock,
    ManufacturedHome,
    MiniStorage,
    MultiFamily,
    Orchard,
    Other,
    Pasture,
    PlaceofWorship,
    Poultry,
    Ranch,
    Recreational,
    Residential,
    Retail,
    SeeRemarks,
    SingleFamily,
    Subdevelopment,
    Timber,
    Unimproved,
    Vacant,
    Warehouse,
    OpenEnumeration(String),
}

Variants

Agricultural

"Agricultural": The land could be used for agriculture.

Cattle

"Cattle": The land could be used for cattle.

Commercial

"Commercial": The land could be used for commercial purposes.

Dairy

"Dairy": The land could be used for a dairy farm.

Development

"Development": The land could be used for new development.

Farm

"Farm": The land could be used for a farm.

Fishery

"Fishery": The land could be used for a fishery.

Grazing

"Grazing": The land could be used for livestock grazing.

HighwayTouristService

"Highway/Tourist Service": The land could be used for a highway/tourist service.

Horses

"Horses": The land could be used for horses.

Hunting

"Hunting": The land could be used for hunting.

Industrial

"Industrial": The land could be used for industrial purposes.

Investment

"Investment": The land could be used as an investment land.

Livestock

"Livestock": The land could be used for livestock.

ManufacturedHome

"Manufactured Home": The land could be used for manufactured home(s).

MiniStorage

"Mini-Storage": The land could be used for mini-storage.

MultiFamily

"Multi-Family": The land could be used for multi-family home(s).

Orchard

"Orchard": The land could be used for an orchard.

Other

"Other": The land could be used for a purpose other than those in this list.

Pasture

"Pasture": The land could be used as a pasture.

PlaceofWorship

"Place of Worship": The land could be used for place of worship.

Poultry

"Poultry": The land could be used for poultry.

Ranch

"Ranch": The land could be used as a ranch.

Recreational

"Recreational": The land could be used for recreational purposes.

Residential

"Residential": The land could be used for residential purposes.

Retail

"Retail": The land could be used for retail business.

SeeRemarks

"See Remarks": See the Public or Private remarks for details on possible uses for the land.

SingleFamily

"Single Family": The land could be used for single family residence(s).

Subdevelopment

"Subdevelopment": The land could be used for subdevelopment(s).

Timber

"Timber": The land could be used for timber.

Unimproved

"Unimproved": The land could be kept undeveloped.

Vacant

"Vacant": The land could be kept vacant.

Warehouse

"Warehouse": The land could be used for warehousing.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for PossibleUse[src]

impl Debug for PossibleUse[src]

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

impl Eq for PossibleUse[src]

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

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

impl From<String> for PossibleUse[src]

impl PartialEq<PossibleUse> for PossibleUse[src]

impl ResoEnumeration for PossibleUse[src]

impl Serialize for PossibleUse[src]

impl StructuralEq for PossibleUse[src]

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