[][src]Enum reso_dd::ContactListingPreference

pub enum ContactListingPreference {
    Discard,
    Favorite,
    Possibility,
    OpenEnumeration(String),
}

Variants

Discard

"Discard": The contact has flagged to discard the given listing. The contact is not interested in the given listing.

Favorite

"Favorite": The contact has flagged the given listing as a favorite. The contact is interested in the given listing.

Possibility

"Possibility": The contact has flagged the given listing as a possibility. The contact might be interested in the given listing.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for ContactListingPreference[src]

impl Debug for ContactListingPreference[src]

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

impl Eq for ContactListingPreference[src]

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

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

impl From<String> for ContactListingPreference[src]

impl PartialEq<ContactListingPreference> for ContactListingPreference[src]

impl ResoEnumeration for ContactListingPreference[src]

impl Serialize for ContactListingPreference[src]

impl StructuralEq for ContactListingPreference[src]

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