[][src]Enum reso_dd::AreaSource

pub enum AreaSource {
    Appraiser,
    Assessor,
    Builder,
    Estimated,
    Other,
    Owner,
    Plans,
    PublicRecords,
    SeeRemarks,
    OpenEnumeration(String),
}

Variants

Appraiser

"Appraiser": An appraiser provided the measurement of the area.

Assessor

"Assessor": The assessor provided the measurement of the area.

Builder

"Builder": The builder provided the measurement of the area.

Estimated

"Estimated": The measurement of the area is an estimate.

Other

"Other": The measurement of the area was provided by another party not listed.

Owner

"Owner": The owner provided the measurement of the area.

Plans

"Plans": The measurement of the area was taken from building plans.

PublicRecords

"Public Records": The measurement of the area was received from public records.

SeeRemarks

"See Remarks": See remarks for information about the source of the area measurement.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for AreaSource[src]

impl Debug for AreaSource[src]

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

impl Eq for AreaSource[src]

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

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

impl From<String> for AreaSource[src]

impl PartialEq<AreaSource> for AreaSource[src]

impl ResoEnumeration for AreaSource[src]

impl Serialize for AreaSource[src]

impl StructuralEq for AreaSource[src]

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