pub struct EmailSent {
pub email_sent_at: Timestamp,
pub email_sent_to: String,
}
Fields§
§email_sent_at: Timestamp
The timestamp when the email was sent.
email_sent_to: String
The recipient’s email address.
Trait Implementations§
Source§impl Deserialize for EmailSent
impl Deserialize for EmailSent
Source§impl ObjectDeser for EmailSent
impl ObjectDeser for EmailSent
type Builder = EmailSentBuilder
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