pub struct EmailSent {
pub email_sent_at: i64,
pub email_sent_to: String,
}
Fields§
§email_sent_at: i64
The timestamp when the email was sent.
email_sent_to: String
The recipient’s email address.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EmailSent
impl RefUnwindSafe for EmailSent
impl Send for EmailSent
impl Sync for EmailSent
impl Unpin for EmailSent
impl UnwindSafe for EmailSent
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