[][src]Enum reso_dd::RoadSurfaceType

pub enum RoadSurfaceType {
    AlleyPaved,
    Asphalt,
    ChipAndSeal,
    Concrete,
    Dirt,
    Gravel,
    None,
    Other,
    Paved,
    SeeRemarks,
    Unimproved,
    OpenEnumeration(String),
}

Variants

AlleyPaved

"Alley Paved": The property's road is a paved alley.

Asphalt

"Asphalt": The property's road is asphalt.

ChipAndSeal

"Chip And Seal": The property's road is chip and seal.

Concrete

"Concrete": The property's road is concrete.

Dirt

"Dirt": The property's road is dirt.

Gravel

"Gravel": The property's road is gravel.

None

"None": The property has no road.

Other

"Other": The surface type of the property's road is something other than those in this list.

Paved

"Paved": The property's road is paved.

SeeRemarks

"See Remarks": See the Public or Private Remarks for details on the road surface type.

Unimproved

"Unimproved": The property's road is unimproved.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for RoadSurfaceType[src]

impl Debug for RoadSurfaceType[src]

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

impl Eq for RoadSurfaceType[src]

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

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

impl From<String> for RoadSurfaceType[src]

impl PartialEq<RoadSurfaceType> for RoadSurfaceType[src]

impl ResoEnumeration for RoadSurfaceType[src]

impl Serialize for RoadSurfaceType[src]

impl StructuralEq for RoadSurfaceType[src]

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