Struct aws_sdk_ses::types::SendDataPoint
source · #[non_exhaustive]pub struct SendDataPoint {
pub timestamp: Option<DateTime>,
pub delivery_attempts: i64,
pub bounces: i64,
pub complaints: i64,
pub rejects: i64,
}
Expand description
Represents sending statistics data. Each SendDataPoint
contains statistics for a 15-minute period of sending activity.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.timestamp: Option<DateTime>
Time of the data point.
delivery_attempts: i64
Number of emails that have been sent.
bounces: i64
Number of emails that have bounced.
complaints: i64
Number of unwanted emails that were rejected by recipients.
rejects: i64
Number of emails rejected by Amazon SES.
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 for SendDataPoint
impl PartialEq 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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.