[][src]Enum reso_dd::MemberType

pub enum MemberType {
    Assistant,
    AssociationStaff,
    DesignatedREALTORAppraiser,
    DesignatedREALTORParticipant,
    LicensedAssistant,
    MLSOnlyAppraiser,
    MLSOnlyBroker,
    MLSOnlySalesperson,
    MLSStaff,
    NonMemberVendor,
    OfficeManager,
    REALTORAppraiser,
    REALTORSalesperson,
    UnlicensedAssistant,
    OpenEnumeration(String),
}

Variants

Assistant

"Assistant": The member is an assistant. The status of the assistant being licensed is not known or possibly not required.

AssociationStaff

"Association Staff": The member is a member of the association's staff.

DesignatedREALTORAppraiser

"Designated REALTOR Appraiser": The member is a designated appraiser and a member of NAR.

DesignatedREALTORParticipant

"Designated REALTOR Participant": The member is a designated broker and a member of NAR.

LicensedAssistant

"Licensed Assistant": The member is an assistant. The status of the assistant being licensed is not known or possibly not required.

MLSOnlyAppraiser

"MLS Only Appraiser": The member is an appraiser and not a member of NAR, receiving MLS services only.

MLSOnlyBroker

"MLS Only Broker": The member is a broker and not a member of NAR, receiving MLS services only.

MLSOnlySalesperson

"MLS Only Salesperson": The member is a sales person and not a member of NAR, receiving MLS services only.

MLSStaff

"MLS Staff": The individual is a member of MLS staff.

NonMemberVendor

"Non Member/Vendor": The individual is not a member or is a vendor.

OfficeManager

"Office Manager": The member is a license office manager.

REALTORAppraiser

"REALTOR Appraiser": The member is an appraiser and a member of NAR.

REALTORSalesperson

"REALTOR Salesperson": The member is a sales person and a member of NAR.

UnlicensedAssistant

"Unlicensed Assistant": The member is an unlicensed assistant.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for MemberType[src]

impl Debug for MemberType[src]

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

impl Eq for MemberType[src]

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

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

impl From<String> for MemberType[src]

impl PartialEq<MemberType> for MemberType[src]

impl ResoEnumeration for MemberType[src]

impl Serialize for MemberType[src]

impl StructuralEq for MemberType[src]

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