[][src]Enum reso_dd::OpenHouseType

pub enum OpenHouseType {
    Broker,
    Office,
    Public,
    OpenEnumeration(String),
}

Variants

Broker

"Broker": The open house is only open to brokers, and at times agents.

Office

"Office": The open house is only open to the members of a particular office(s).

Public

"Public": The open house is open to the general public.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for OpenHouseType[src]

impl Debug for OpenHouseType[src]

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

impl Eq for OpenHouseType[src]

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

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

impl From<String> for OpenHouseType[src]

impl PartialEq<OpenHouseType> for OpenHouseType[src]

impl ResoEnumeration for OpenHouseType[src]

impl Serialize for OpenHouseType[src]

impl StructuralEq for OpenHouseType[src]

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