[][src]Struct mailslurp::models::email_analysis::EmailAnalysis

pub struct EmailAnalysis {
    pub dkim_verdict: Option<String>,
    pub dmarc_verdict: Option<String>,
    pub spam_verdict: Option<String>,
    pub spf_verdict: Option<String>,
    pub virus_verdict: Option<String>,
}

EmailAnalysis : Analysis result for email. Each verdict property is a string PASS|FAIL|GRAY or dynamic error message

Fields

dkim_verdict: Option<String>

Verdict of DomainKeys Identified Mail analysis

dmarc_verdict: Option<String>

Verdict of Domain-based Message Authentication Reporting and Conformance analysis

spam_verdict: Option<String>

Verdict of spam ranking analysis

spf_verdict: Option<String>

Verdict of Send Policy Framework record spoofing analysis

virus_verdict: Option<String>

Verdict of virus scan analysis

Implementations

impl EmailAnalysis[src]

pub fn new() -> EmailAnalysis[src]

Analysis result for email. Each verdict property is a string PASS|FAIL|GRAY or dynamic error message

Trait Implementations

impl Clone for EmailAnalysis[src]

impl Debug for EmailAnalysis[src]

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

impl PartialEq<EmailAnalysis> for EmailAnalysis[src]

impl Serialize for EmailAnalysis[src]

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