pub struct SendDataPoint {
pub bounces: Option<i64>,
pub complaints: Option<i64>,
pub delivery_attempts: Option<i64>,
pub rejects: Option<i64>,
pub timestamp: Option<DateTime<Utc>>,
}Expand description
SES SendDataPoint.
Fields§
§bounces: Option<i64>§complaints: Option<i64>§delivery_attempts: Option<i64>§rejects: Option<i64>§timestamp: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for SendDataPoint
impl Clone for SendDataPoint
Source§fn clone(&self) -> SendDataPoint
fn clone(&self) -> SendDataPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Default for SendDataPoint
impl Default for SendDataPoint
Source§fn default() -> SendDataPoint
fn default() -> SendDataPoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendDataPoint
impl<'de> Deserialize<'de> for SendDataPoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SendDataPoint
impl RefUnwindSafe for SendDataPoint
impl Send for SendDataPoint
impl Sync for SendDataPoint
impl Unpin for SendDataPoint
impl UnsafeUnpin 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