[][src]Enum reso_dd::HoursDaysOfOperation

pub enum HoursDaysOfOperation {
    EveningsOnly,
    OpenLessThan8HoursDay,
    Open24Hours,
    Open7Days,
    Open8HoursDay,
    Open8PlusHoursDay,
    OpenMondayFriday,
    OpenSaturday,
    OpenSunday,
    OpenEnumeration(String),
}

Variants

EveningsOnly

"Evenings Only": The business being sold is open in the evenings only.

OpenLessThan8HoursDay

"Open -8 Hours/Day": The business being sold is open less than 8 hours per day.

Open24Hours

"Open 24 Hours": The business being sold is open 24 hours per day.

Open7Days

"Open 7 Days": The business being sold is open 7 days per week.

Open8HoursDay

"Open 8 Hours/Day": The business being sold is open 8 hours per day.

Open8PlusHoursDay

"Open 8+ Hours/Day": The business being sold is open more than 8 hours/day.

OpenMondayFriday

"Open Monday-Friday": The business being sold is open Monday through Friday.

OpenSaturday

"Open Saturday": The business being sold is open on Saturdays.

OpenSunday

"Open Sunday": The business being sold is open on Sundays.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for HoursDaysOfOperation[src]

impl Debug for HoursDaysOfOperation[src]

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

impl Eq for HoursDaysOfOperation[src]

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

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

impl From<String> for HoursDaysOfOperation[src]

impl PartialEq<HoursDaysOfOperation> for HoursDaysOfOperation[src]

impl ResoEnumeration for HoursDaysOfOperation[src]

impl Serialize for HoursDaysOfOperation[src]

impl StructuralEq for HoursDaysOfOperation[src]

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