Struct rusoto_ses::SendDataPoint[][src]

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

Number of emails that have bounced.

Number of unwanted emails that were rejected by recipients.

Number of emails that have been sent.

Number of emails rejected by Amazon SES.

Time of the data point.

Trait Implementations

impl Default for SendDataPoint
[src]

Returns the "default value" for a type. Read more

impl Debug for SendDataPoint
[src]

Formats the value using the given formatter. Read more

impl Clone for SendDataPoint
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SendDataPoint
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations