[][src]Enum reso_dd::ContactStatus

pub enum ContactStatus {
    Active,
    Deleted,
    Inactive,
    OnVacation,
    OpenEnumeration(String),
}

Variants

Active

"Active": The contact is active.

Deleted

"Deleted": The contact has been deleted.

Inactive

"Inactive": The contact is no longer active.

OnVacation

"On Vacation": The contact is on vacation.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for ContactStatus[src]

impl Debug for ContactStatus[src]

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

impl Eq for ContactStatus[src]

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

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

impl From<String> for ContactStatus[src]

impl PartialEq<ContactStatus> for ContactStatus[src]

impl ResoEnumeration for ContactStatus[src]

impl Serialize for ContactStatus[src]

impl StructuralEq for ContactStatus[src]

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