[][src]Enum reso_dd::Attended

pub enum Attended {
    Agent,
    Seller,
    Unattended,
    OpenEnumeration(String),
}

Variants

Agent

"Agent": A licensed real estate agent will be present at the open house event.

Seller

"Seller": A licensed real estate agent will not be present and the property owner will be present at the open house event.

Unattended

"Unattended": The open house event will not be attended. Access will normally be via lockbox or other pre-arranged means.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for Attended[src]

impl Debug for Attended[src]

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

impl Eq for Attended[src]

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

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

impl From<String> for Attended[src]

impl PartialEq<Attended> for Attended[src]

impl ResoEnumeration for Attended[src]

impl Serialize for Attended[src]

impl StructuralEq for Attended[src]

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