[][src]Enum reso_dd::CommonWalls

pub enum CommonWalls {
    _1CommonWall,
    _2PlusCommonWalls,
    EndUnit,
    NoCommonWalls,
    NoOneAbove,
    NoOneBelow,
    OpenEnumeration(String),
}

Variants

_1CommonWall

"1 Common Wall": The dwelling being sold has one common wall with another property that is not part of the sale. Also known as an attached structure.

_2PlusCommonWalls

"2+ Common Walls": The dwelling being sold has two or more common walls with another property that is not part of the sale. Also known as an attached structure.

EndUnit

"End Unit": The dwelling being sold has one or more common walls with another property that is not part of the sale and is at the end of a row of units. Also known as an attached structure.

NoCommonWalls

"No Common Walls": The dwelling being sold has no attached structures that are not part of the sale. Also know as a detached structure.

NoOneAbove

"No One Above": The property is attached to another dwelling that is not part of the sale, but there is no unit above the one being sold.

NoOneBelow

"No One Below": The property is attached to another dwelling that is not part of the sale, but there is no unit below the one being sold.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for CommonWalls[src]

impl Debug for CommonWalls[src]

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

impl Eq for CommonWalls[src]

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

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

impl From<String> for CommonWalls[src]

impl PartialEq<CommonWalls> for CommonWalls[src]

impl ResoEnumeration for CommonWalls[src]

impl Serialize for CommonWalls[src]

impl StructuralEq for CommonWalls[src]

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