Struct aws_sdk_sesv2::types::PlacementStatistics
source · #[non_exhaustive]pub struct PlacementStatistics { /* private fields */ }Expand description
An object that contains inbox placement data for an email provider.
Implementations§
source§impl PlacementStatistics
impl PlacementStatistics
sourcepub fn inbox_percentage(&self) -> Option<f64>
pub fn inbox_percentage(&self) -> Option<f64>
The percentage of emails that arrived in recipients' inboxes during the predictive inbox placement test.
sourcepub fn spam_percentage(&self) -> Option<f64>
pub fn spam_percentage(&self) -> Option<f64>
The percentage of emails that arrived in recipients' spam or junk mail folders during the predictive inbox placement test.
sourcepub fn missing_percentage(&self) -> Option<f64>
pub fn missing_percentage(&self) -> Option<f64>
The percentage of emails that didn't arrive in recipients' inboxes at all during the predictive inbox placement test.
sourcepub fn spf_percentage(&self) -> Option<f64>
pub fn spf_percentage(&self) -> Option<f64>
The percentage of emails that were authenticated by using Sender Policy Framework (SPF) during the predictive inbox placement test.
sourcepub fn dkim_percentage(&self) -> Option<f64>
pub fn dkim_percentage(&self) -> Option<f64>
The percentage of emails that were authenticated by using DomainKeys Identified Mail (DKIM) during the predictive inbox placement test.
source§impl PlacementStatistics
impl PlacementStatistics
sourcepub fn builder() -> PlacementStatisticsBuilder
pub fn builder() -> PlacementStatisticsBuilder
Creates a new builder-style object to manufacture PlacementStatistics.
Trait Implementations§
source§impl Clone for PlacementStatistics
impl Clone for PlacementStatistics
source§fn clone(&self) -> PlacementStatistics
fn clone(&self) -> PlacementStatistics
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PlacementStatistics
impl Debug for PlacementStatistics
source§impl PartialEq<PlacementStatistics> for PlacementStatistics
impl PartialEq<PlacementStatistics> for PlacementStatistics
source§fn eq(&self, other: &PlacementStatistics) -> bool
fn eq(&self, other: &PlacementStatistics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.