[][src]Enum reso_dd::OfficeType

pub enum OfficeType {
    Affiliate,
    Appraiser,
    Association,
    MLS,
    MLSOnlyBranch,
    MLSOnlyFirm,
    MLSOnlyOffice,
    NonMemberVendor,
    RealtorBranchOffice,
    RealtorFirm,
    RealtorOffice,
    OpenEnumeration(String),
}

Variants

Affiliate

"Affiliate": The record in the office roster is an affiliate office.

Appraiser

"Appraiser": The record in the office roster is an appraiser office.

Association

"Association": The record in the office roster is an association office.

MLS

"MLS": The record in the office roster is an MLS office.

MLSOnlyBranch

"MLS Only Branch": The record in the office roster is a broker branch office who receives only MLS service.

MLSOnlyFirm

"MLS Only Firm": The record in the office roster is a broker Firm office who receives only MLS service.

MLSOnlyOffice

"MLS Only Office": The record in the office roster is a broker office who receives only MLS service.

NonMemberVendor

"Non Member/Vendor": The record in the office roster is an non member/vendor office.

RealtorBranchOffice

"Realtor Branch Office": The record in the office roster is an realtor branch office .

RealtorFirm

"Realtor Firm": The record in the office roster is an realtor firm office.

RealtorOffice

"Realtor Office": The record in the office roster is an realtor office.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for OfficeType[src]

impl Debug for OfficeType[src]

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

impl Eq for OfficeType[src]

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

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

impl From<String> for OfficeType[src]

impl PartialEq<OfficeType> for OfficeType[src]

impl ResoEnumeration for OfficeType[src]

impl Serialize for OfficeType[src]

impl StructuralEq for OfficeType[src]

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