pub struct SentEmail {
pub to: String,
pub subject: String,
pub timestamp: String,
pub success: bool,
}Expand description
Record of a sent email.
Fields§
§to: String§subject: String§timestamp: String§success: boolTrait 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