[][src]Struct rusoto_ses::SendDataPoint

pub struct SendDataPoint {
    pub bounces: Option<i64>,
    pub complaints: Option<i64>,
    pub delivery_attempts: Option<i64>,
    pub rejects: Option<i64>,
    pub timestamp: Option<String>,
}

Represents sending statistics data. Each SendDataPoint contains statistics for a 15-minute period of sending activity.

Fields

bounces: Option<i64>

Number of emails that have bounced.

complaints: Option<i64>

Number of unwanted emails that were rejected by recipients.

delivery_attempts: Option<i64>

Number of emails that have been sent.

rejects: Option<i64>

Number of emails rejected by Amazon SES.

timestamp: Option<String>

Time of the data point.

Trait Implementations

impl Clone for SendDataPoint[src]

impl Debug for SendDataPoint[src]

impl Default for SendDataPoint[src]

impl PartialEq<SendDataPoint> for SendDataPoint[src]

impl StructuralPartialEq for SendDataPoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.