Struct aws_sdk_sesv2::types::OverallVolume
source · #[non_exhaustive]pub struct OverallVolume {
pub volume_statistics: Option<VolumeStatistics>,
pub read_rate_percent: Option<f64>,
pub domain_isp_placements: Option<Vec<DomainIspPlacement>>,
}Expand description
An object that contains information about email that was sent from the selected domain.
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.volume_statistics: Option<VolumeStatistics>An object that contains information about the numbers of messages that arrived in recipients' inboxes and junk mail folders.
read_rate_percent: Option<f64>The percentage of emails that were sent from the domain that were read by their recipients.
domain_isp_placements: Option<Vec<DomainIspPlacement>>An object that contains inbox and junk mail placement metrics for individual email providers.
Implementations§
source§impl OverallVolume
impl OverallVolume
sourcepub fn volume_statistics(&self) -> Option<&VolumeStatistics>
pub fn volume_statistics(&self) -> Option<&VolumeStatistics>
An object that contains information about the numbers of messages that arrived in recipients' inboxes and junk mail folders.
sourcepub fn read_rate_percent(&self) -> Option<f64>
pub fn read_rate_percent(&self) -> Option<f64>
The percentage of emails that were sent from the domain that were read by their recipients.
sourcepub fn domain_isp_placements(&self) -> &[DomainIspPlacement]
pub fn domain_isp_placements(&self) -> &[DomainIspPlacement]
An object that contains inbox and junk mail placement metrics for individual email providers.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .domain_isp_placements.is_none().
source§impl OverallVolume
impl OverallVolume
sourcepub fn builder() -> OverallVolumeBuilder
pub fn builder() -> OverallVolumeBuilder
Creates a new builder-style object to manufacture OverallVolume.
Trait Implementations§
source§impl Clone for OverallVolume
impl Clone for OverallVolume
source§fn clone(&self) -> OverallVolume
fn clone(&self) -> OverallVolume
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for OverallVolume
impl Debug for OverallVolume
source§impl PartialEq for OverallVolume
impl PartialEq for OverallVolume
source§fn eq(&self, other: &OverallVolume) -> bool
fn eq(&self, other: &OverallVolume) -> bool
self and other values to be equal, and is used
by ==.