[][src]Enum reso_dd::DailySchedule

pub enum DailySchedule {
    FridayAM,
    FridayPM,
    MondayAM,
    MondayPM,
    None,
    SaturdayAM,
    SaturdayPM,
    SundayAM,
    SundayPM,
    ThursdayAM,
    ThursdayPM,
    TuesdayAM,
    TuesdayPM,
    WednesdayAM,
    WednesdayPM,
    OpenEnumeration(String),
}

Variants

FridayAM

"Friday AM": The prospect (auto email) will be sent every Friday morning.

FridayPM

"Friday PM": The prospect (auto email) will be sent every Friday evening.

MondayAM

"Monday AM": The prospect (auto email) will be sent every Monday morning.

MondayPM

"Monday PM": The prospect (auto email) will be sent every Monday evening.

None

"None": The prospect (auto email) has not been setup for any daily schedule.

SaturdayAM

"Saturday AM": The prospect (auto email) will be sent every Saturday morning.

SaturdayPM

"Saturday PM": The prospect (auto email) will be sent every Saturday evening.

SundayAM

"Sunday AM": The prospect (auto email) will be sent every Sunday morning.

SundayPM

"Sunday PM": The prospect (auto email) will be sent every Sunday evening.

ThursdayAM

"Thursday AM": The prospect (auto email) will be sent every Thursday morning.

ThursdayPM

"Thursday PM": The prospect (auto email) will be sent every Thursday evening.

TuesdayAM

"Tuesday AM": The prospect (auto email) will be sent every Tuesday morning.

TuesdayPM

"Tuesday PM": The prospect (auto email) will be sent every Tuesday evening.

WednesdayAM

"Wednesday AM": The prospect (auto email) will be sent every Wednesday morning.

WednesdayPM

"Wednesday PM": The prospect (auto email) will be sent every Wednesday evening.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for DailySchedule[src]

impl Debug for DailySchedule[src]

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

impl Eq for DailySchedule[src]

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

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

impl From<String> for DailySchedule[src]

impl PartialEq<DailySchedule> for DailySchedule[src]

impl ResoEnumeration for DailySchedule[src]

impl Serialize for DailySchedule[src]

impl StructuralEq for DailySchedule[src]

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