pub struct PasswordChangedEmail {
pub to: String,
pub name: String,
pub changed_at: String,
pub ip_address: String,
}Expand description
Password changed confirmation
Fields§
§to: StringRecipient email address
name: StringUser’s display name
changed_at: StringWhen the password was changed (formatted)
ip_address: StringIP address that made the change
Trait Implementations§
Source§impl Clone for PasswordChangedEmail
impl Clone for PasswordChangedEmail
Source§fn clone(&self) -> PasswordChangedEmail
fn clone(&self) -> PasswordChangedEmail
Returns a duplicate of the value. Read more
1.0.0 · 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 PasswordChangedEmail
impl Debug for PasswordChangedEmail
Source§impl EmailTemplate for PasswordChangedEmail
impl EmailTemplate for PasswordChangedEmail
Source§fn template_name(&self) -> &'static str
fn template_name(&self) -> &'static str
Get the template name (without extension) Read more
Source§fn priority(&self) -> EmailPriority
fn priority(&self) -> EmailPriority
Get the priority level (for queue ordering)
Auto Trait Implementations§
impl Freeze for PasswordChangedEmail
impl RefUnwindSafe for PasswordChangedEmail
impl Send for PasswordChangedEmail
impl Sync for PasswordChangedEmail
impl Unpin for PasswordChangedEmail
impl UnwindSafe for PasswordChangedEmail
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