pub struct SentEmail {
pub email_address: String,
pub message: String,
pub subject: Option<String>,
pub topic_arn: String,
pub timestamp: DateTime<Utc>,
}Expand description
A recorded email delivery from SNS (stub).
Fields§
§email_address: String§message: String§subject: Option<String>§topic_arn: String§timestamp: DateTime<Utc>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SentEmail
impl RefUnwindSafe for SentEmail
impl Send for SentEmail
impl Sync for SentEmail
impl Unpin for SentEmail
impl UnsafeUnpin for SentEmail
impl UnwindSafe for SentEmail
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