[][src]Enum reso_dd::SpecialLicenses

pub enum SpecialLicenses {
    BeerWine,
    ClassH,
    Entertainment,
    Franchise,
    Gambling,
    Liquor,
    Liquor5YearsOrLess,
    Liquor5YearsOrMore,
    LiquorOffSale,
    LiquorOnSale,
    None,
    Other,
    Professional,
    OpenEnumeration(String),
}

Variants

BeerWine

"Beer/Wine": The business being sold uses/requires a Beer/Wine license.

ClassH

"Class H": The business being sold uses/requires a Class H license.

Entertainment

"Entertainment": The business being sold uses/requires an Entertainment license.

Franchise

"Franchise": The business being sold uses/requires a Franchise license.

Gambling

"Gambling": The business being sold uses/requires a Gambling license.

Liquor

"Liquor": The business being sold uses/requires a Liquor license.

Liquor5YearsOrLess

"Liquor 5 Years Or Less": The business being sold uses/requires a Liquor 5 years or less license.

Liquor5YearsOrMore

"Liquor 5 Years Or More": The business being sold uses/requires a Liquor 5 years or more license.

LiquorOffSale

"Liquor-Off Sale": The business being sold uses/requires a Liquor-Off Sale license.

LiquorOnSale

"Liquor-On Sale": The business being sold uses/requires a Liquor-On Sale license.

None

"None": The business being sold uses/requires/has no license.

Other

"Other": The business being sold uses/requires an other license.

Professional

"Professional": The business being sold uses/requires a Professional license.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for SpecialLicenses[src]

impl Debug for SpecialLicenses[src]

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

impl Eq for SpecialLicenses[src]

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

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

impl From<String> for SpecialLicenses[src]

impl PartialEq<SpecialLicenses> for SpecialLicenses[src]

impl ResoEnumeration for SpecialLicenses[src]

impl Serialize for SpecialLicenses[src]

impl StructuralEq for SpecialLicenses[src]

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