[][src]Enum check_if_email_exists::Reachable

pub enum Reachable {
    Safe,
    Risky,
    Invalid,
    Unknown,
}

An enum to describe how confident we are that the recipient address is real.

Variants

Safe

The email is safe to send.

Risky

The email address appears to exist, but has quality issues that may result in low engagement or a bounce. Emails are classified as risky when one of the following happens:

  • catch-all email,
  • disposable email,
  • role-based address,
  • full inbox.
Invalid

Emails that don't exist or are syntactically incorrect. Do not send to these emails.

Unknown

We're unable to get a valid response from the recipient's email server.

Trait Implementations

impl Debug for Reachable[src]

impl PartialEq<Reachable> for Reachable[src]

impl Serialize for Reachable[src]

impl StructuralPartialEq for Reachable[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,