[][src]Enum reso_dd::PetsAllowed

pub enum PetsAllowed {
    BreedRestrictions,
    Call,
    CatsOK,
    DogsOK,
    No,
    NumberLimit,
    SizeLimit,
    Yes,
    OpenEnumeration(String),
}

Variants

BreedRestrictions

"Breed Restrictions": There are breed restrictions on allowed pets.

Call

"Call": Call to inquire about pet restrictions.

CatsOK

"Cats OK": Cats are allowed.

DogsOK

"Dogs OK": Dogs are allowed.

No

"No": No pets are allowed.

NumberLimit

"Number Limit": There is a limit on the number of pets allowed.

SizeLimit

"Size Limit": There are size restrictions on allowed pets.

Yes

"Yes": All pets are allowed.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for PetsAllowed[src]

impl Debug for PetsAllowed[src]

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

impl Eq for PetsAllowed[src]

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

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

impl From<String> for PetsAllowed[src]

impl PartialEq<PetsAllowed> for PetsAllowed[src]

impl ResoEnumeration for PetsAllowed[src]

impl Serialize for PetsAllowed[src]

impl StructuralEq for PetsAllowed[src]

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