[][src]Enum reso_dd::TeamMemberType

pub enum TeamMemberType {
    AdministrationAssistant,
    BuyerAgent,
    LeadManager,
    ListingAgent,
    MarketingAssistant,
    OperationsManager,
    TeamLead,
    TeamMember,
    TransactionCoordinator,
    OpenEnumeration(String),
}

Variants

AdministrationAssistant

"Administration Assistant": The member of a team who assists with administrative tasks.

BuyerAgent

"Buyer Agent": A member of the real estate team.

LeadManager

"Lead Manager": The member of the team who is the lead manager.

ListingAgent

"Listing Agent": The member of a team who lists properties.

MarketingAssistant

"Marketing Assistant": The member of a team who assists with marketing.

OperationsManager

"Operations Manager": The member of the team who manages operations.

TeamLead

"Team Lead": The leading member of a team.

TeamMember

"Team Member": A member of the real estate team.

TransactionCoordinator

"Transaction Coordinator": The member of a team who handles transaction details.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for TeamMemberType[src]

impl Debug for TeamMemberType[src]

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

impl Eq for TeamMemberType[src]

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

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

impl From<String> for TeamMemberType[src]

impl PartialEq<TeamMemberType> for TeamMemberType[src]

impl ResoEnumeration for TeamMemberType[src]

impl Serialize for TeamMemberType[src]

impl StructuralEq for TeamMemberType[src]

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