Struct aws_sdk_ses::types::SendDataPoint
source · #[non_exhaustive]pub struct SendDataPoint { /* private fields */ }Expand description
Represents sending statistics data. Each SendDataPoint contains statistics for a 15-minute period of sending activity.
Implementations§
source§impl SendDataPoint
impl SendDataPoint
sourcepub fn delivery_attempts(&self) -> i64
pub fn delivery_attempts(&self) -> i64
Number of emails that have been sent.
sourcepub fn complaints(&self) -> i64
pub fn complaints(&self) -> i64
Number of unwanted emails that were rejected by recipients.
source§impl SendDataPoint
impl SendDataPoint
sourcepub fn builder() -> SendDataPointBuilder
pub fn builder() -> SendDataPointBuilder
Creates a new builder-style object to manufacture SendDataPoint.
Trait Implementations§
source§impl Clone for SendDataPoint
impl Clone for SendDataPoint
source§fn clone(&self) -> SendDataPoint
fn clone(&self) -> SendDataPoint
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 SendDataPoint
impl Debug for SendDataPoint
source§impl PartialEq<SendDataPoint> for SendDataPoint
impl PartialEq<SendDataPoint> for SendDataPoint
source§fn eq(&self, other: &SendDataPoint) -> bool
fn eq(&self, other: &SendDataPoint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SendDataPoint
Auto Trait Implementations§
impl RefUnwindSafe for SendDataPoint
impl Send for SendDataPoint
impl Sync for SendDataPoint
impl Unpin for SendDataPoint
impl UnwindSafe for SendDataPoint
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more