Struct aws_sdk_sesv2::types::VolumeStatistics
source · #[non_exhaustive]pub struct VolumeStatistics {
pub inbox_raw_count: Option<i64>,
pub spam_raw_count: Option<i64>,
pub projected_inbox: Option<i64>,
pub projected_spam: Option<i64>,
}Expand description
An object that contains information about the amount of email that was delivered to recipients.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.inbox_raw_count: Option<i64>The total number of emails that arrived in recipients' inboxes.
spam_raw_count: Option<i64>The total number of emails that arrived in recipients' spam or junk mail folders.
projected_inbox: Option<i64>An estimate of the percentage of emails sent from the current domain that will arrive in recipients' inboxes.
projected_spam: Option<i64>An estimate of the percentage of emails sent from the current domain that will arrive in recipients' spam or junk mail folders.
Implementations§
source§impl VolumeStatistics
impl VolumeStatistics
sourcepub fn inbox_raw_count(&self) -> Option<i64>
pub fn inbox_raw_count(&self) -> Option<i64>
The total number of emails that arrived in recipients' inboxes.
sourcepub fn spam_raw_count(&self) -> Option<i64>
pub fn spam_raw_count(&self) -> Option<i64>
The total number of emails that arrived in recipients' spam or junk mail folders.
sourcepub fn projected_inbox(&self) -> Option<i64>
pub fn projected_inbox(&self) -> Option<i64>
An estimate of the percentage of emails sent from the current domain that will arrive in recipients' inboxes.
sourcepub fn projected_spam(&self) -> Option<i64>
pub fn projected_spam(&self) -> Option<i64>
An estimate of the percentage of emails sent from the current domain that will arrive in recipients' spam or junk mail folders.
source§impl VolumeStatistics
impl VolumeStatistics
sourcepub fn builder() -> VolumeStatisticsBuilder
pub fn builder() -> VolumeStatisticsBuilder
Creates a new builder-style object to manufacture VolumeStatistics.
Trait Implementations§
source§impl Clone for VolumeStatistics
impl Clone for VolumeStatistics
source§fn clone(&self) -> VolumeStatistics
fn clone(&self) -> VolumeStatistics
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for VolumeStatistics
impl Debug for VolumeStatistics
source§impl PartialEq for VolumeStatistics
impl PartialEq for VolumeStatistics
source§fn eq(&self, other: &VolumeStatistics) -> bool
fn eq(&self, other: &VolumeStatistics) -> bool
self and other values to be equal, and is used
by ==.