[][src]Enum reso_dd::ReasonActiveOrDisabled

pub enum ReasonActiveOrDisabled {
    AgentDisabled,
    ClientDisabled,
    ConciergeNotification,
    FinalIgnoredWarning,
    Ignored,
    InitialIgnoredWarning,
    Invalid,
    NoListingsFound,
    NoListingsFoundWarning,
    NoOneToSendTo,
    OverLimit,
    ReActivated,
    Revised,
    SearchFailing,
    WelcomeEmailIgnored,
    WelcomeEmailIgnoredWarning,
    OpenEnumeration(String),
}

Variants

AgentDisabled

"Agent Disabled": The agent has disabled this auto email.

ClientDisabled

"Client Disabled": The auto email has been disabled by the client/recipient.

ConciergeNotification

"Concierge Notification": The auto email is on hold pending concierge approval by the member. The auto email is temporarily disabled.

FinalIgnoredWarning

"Final Ignored Warning": The final warning that the auto email has not been viewed by the client/recipient and may be inactivated due to being ignored. The auto email is still active.

Ignored

"Ignored": The auto email was not viewed by the client/recipient in the time frame designated by the host system. The auto email is disabled.

InitialIgnoredWarning

"Initial Ignored Warning": The first warning that the auto email has not been viewed by the client/recipient. The auto email is still active.

Invalid

"Invalid": The auto email is no longer valid per some conditions set by the host system. The auto email is disabled.

NoListingsFound

"No Listings Found": The auto email has not found any listings matching the criteria and been disabled per the host system rules.

NoListingsFoundWarning

"No Listings Found Warning": The auto email has not found any listings matching the criteria and may be disabled. The auto email is still active.

NoOneToSendTo

"No One To Send To": There is no valid email address and the auto email has been inactivated.

OverLimit

"Over Limit": The auto email has reached the limit of listing results as set by the host system. The auto email is disabled.

ReActivated

"Re-Activated": The auto email has was previously disabled and has been set back to active.

Revised

"Revised": The auto email has been revised and is active.

SearchFailing

"Search Failing": The auto email's search criteria is failing and should be reviewed by the host system. The auto email is disabled.

WelcomeEmailIgnored

"Welcome Email Ignored": The initial auto email has not been viewed by the client/recipient and the auto email has been deactivated.

WelcomeEmailIgnoredWarning

"Welcome Email Ignored Warning": The initial auto email has not been viewed by the client/recipient. The auto email is still active.

OpenEnumeration(String)

A value that was not defined by the enumeration

Trait Implementations

impl Clone for ReasonActiveOrDisabled[src]

impl Debug for ReasonActiveOrDisabled[src]

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

impl Eq for ReasonActiveOrDisabled[src]

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

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

impl From<String> for ReasonActiveOrDisabled[src]

impl PartialEq<ReasonActiveOrDisabled> for ReasonActiveOrDisabled[src]

impl ResoEnumeration for ReasonActiveOrDisabled[src]

impl Serialize for ReasonActiveOrDisabled[src]

impl StructuralEq for ReasonActiveOrDisabled[src]

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