Struct aws_sdk_sesv2::types::VolumeStatistics
source · #[non_exhaustive]pub struct VolumeStatistics { /* private fields */ }Expand description
An object that contains information about the amount of email that was delivered to recipients.
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
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 VolumeStatistics
impl Debug for VolumeStatistics
source§impl PartialEq<VolumeStatistics> for VolumeStatistics
impl PartialEq<VolumeStatistics> for VolumeStatistics
source§fn eq(&self, other: &VolumeStatistics) -> bool
fn eq(&self, other: &VolumeStatistics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.