[][src]Enum reso_dd::ScheduleType

pub enum ScheduleType {
    ASAP,
    Daily,
    Monthly,
    OpenEnumeration(String),
}

Variants

ASAP

"ASAP": The prospect (auto email) will be sent as soon as possible through each day. Actual time is determined by listing additions/changes that match the given criteria and by the host system's delivery policy/schedule.

Daily

"Daily": The prospect (auto email) will be sent according to the Daily Schedule.

Monthly

"Monthly": The prospect (auto email) will be sent once per month.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for ScheduleType[src]

impl Debug for ScheduleType[src]

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

impl Eq for ScheduleType[src]

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

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

impl From<String> for ScheduleType[src]

impl PartialEq<ScheduleType> for ScheduleType[src]

impl ResoEnumeration for ScheduleType[src]

impl Serialize for ScheduleType[src]

impl StructuralEq for ScheduleType[src]

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