[][src]Enum reso_dd::MemberOtherPhoneType

pub enum MemberOtherPhoneType {
    Direct,
    Fax,
    First,
    Home,
    Mobile,
    Modem,
    Office,
    Pager,
    Preferred,
    Second,
    SMS,
    Third,
    TollFree,
    Voicemail,
    OpenEnumeration(String),
}

Variants

Direct

"Direct": This is the member's direct number.

Fax

"Fax": This is the member's fax.

First

"First": This is the member's first preferred phone.

Home

"Home": This is the member's home phone.

Mobile

"Mobile": This is the member's mobile phone.

Modem

"Modem": This is the member's modem.

Office

"Office": This is the member's office phone.

Pager

"Pager": This is the member's pager.

Preferred

"Preferred": This is the member's preferred phone.

Second

"Second": This is the member's second preferred phone.

SMS

"SMS": This is the member's SMS/text number.

Third

"Third": This is the member's third preferred phone.

TollFree

"Toll Free": This is the member's toll free number.

Voicemail

"Voicemail": This is the member's voicemail.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for MemberOtherPhoneType[src]

impl Debug for MemberOtherPhoneType[src]

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

impl Eq for MemberOtherPhoneType[src]

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

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

impl From<String> for MemberOtherPhoneType[src]

impl PartialEq<MemberOtherPhoneType> for MemberOtherPhoneType[src]

impl ResoEnumeration for MemberOtherPhoneType[src]

impl Serialize for MemberOtherPhoneType[src]

impl StructuralEq for MemberOtherPhoneType[src]

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