[][src]Struct mailslurp::models::email_verification_result::EmailVerificationResult

pub struct EmailVerificationResult {
    pub domain_name: String,
    pub email_address: String,
    pub error: Option<String>,
    pub is_valid: bool,
    pub port: i32,
}

EmailVerificationResult : Email verification result. Valid means email address exists according to response from mail server running at the domian and port given.

Fields

domain_name: Stringemail_address: Stringerror: Option<String>is_valid: boolport: i32

Implementations

impl EmailVerificationResult[src]

pub fn new(
    domain_name: String,
    email_address: String,
    is_valid: bool,
    port: i32
) -> EmailVerificationResult
[src]

Email verification result. Valid means email address exists according to response from mail server running at the domian and port given.

Trait Implementations

impl Clone for EmailVerificationResult[src]

impl Debug for EmailVerificationResult[src]

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

impl PartialEq<EmailVerificationResult> for EmailVerificationResult[src]

impl Serialize for EmailVerificationResult[src]

impl StructuralPartialEq for EmailVerificationResult[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: for<'de> 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.