[][src]Struct check_if_email_exists::smtp::SmtpDetails

pub struct SmtpDetails {
    pub can_connect_smtp: bool,
    pub has_full_inbox: bool,
    pub is_catch_all: bool,
    pub is_deliverable: bool,
    pub is_disabled: bool,
}

Details that we gathered from connecting to this email via SMTP

Fields

can_connect_smtp: bool

Are we able to connect to the SMTP server?

has_full_inbox: bool

Is this email account's inbox full?

is_catch_all: bool

Does this domain have a catch-all email address?

is_deliverable: bool

Can we send an email to this address?

is_disabled: bool

Is the email blocked or disabled by the provider?

Trait Implementations

impl Debug for SmtpDetails[src]

impl Default for SmtpDetails[src]

impl Serialize for SmtpDetails[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> Instrument for T[src]

impl<T> Instrument 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>,