[][src]Enum reso_dd::PreferredPhone

pub enum PreferredPhone {
    Direct,
    Home,
    Mobile,
    Office,
    Other,
    TollFree,
    Voicemail,
    OpenEnumeration(String),
}

Variants

Direct

"Direct": The contact prefers the use of their direct phone.

Home

"Home": The contact prefers the use of their home phone.

Mobile

"Mobile": The contact prefers the use of their mobile phone.

Office

"Office": The contact prefers the use of their office phone.

Other

"Other": The contact prefers the use of their other phone.

TollFree

"Toll Free": The contact prefers the use of their toll free phone.

Voicemail

"Voicemail": The contact prefers the use of their voicemail phone.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for PreferredPhone[src]

impl Debug for PreferredPhone[src]

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

impl Eq for PreferredPhone[src]

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

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

impl From<String> for PreferredPhone[src]

impl PartialEq<PreferredPhone> for PreferredPhone[src]

impl ResoEnumeration for PreferredPhone[src]

impl Serialize for PreferredPhone[src]

impl StructuralEq for PreferredPhone[src]

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