[][src]Struct rusoto_sesv2::PlacementStatistics

pub struct PlacementStatistics {
    pub dkim_percentage: Option<f64>,
    pub inbox_percentage: Option<f64>,
    pub missing_percentage: Option<f64>,
    pub spam_percentage: Option<f64>,
    pub spf_percentage: Option<f64>,
}

An object that contains inbox placement data for an email provider.

Fields

dkim_percentage: Option<f64>

The percentage of emails that were authenticated by using DomainKeys Identified Mail (DKIM) during the predictive inbox placement test.

inbox_percentage: Option<f64>

The percentage of emails that arrived in recipients' inboxes during the predictive inbox placement test.

missing_percentage: Option<f64>

The percentage of emails that didn't arrive in recipients' inboxes at all during the predictive inbox placement test.

spam_percentage: Option<f64>

The percentage of emails that arrived in recipients' spam or junk mail folders during the predictive inbox placement test.

spf_percentage: Option<f64>

The percentage of emails that were authenticated by using Sender Policy Framework (SPF) during the predictive inbox placement test.

Trait Implementations

impl Clone for PlacementStatistics[src]

impl Debug for PlacementStatistics[src]

impl Default for PlacementStatistics[src]

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

impl PartialEq<PlacementStatistics> for PlacementStatistics[src]

impl StructuralPartialEq for PlacementStatistics[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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.