pub struct CustomVerificationEmailTemplate {
pub template_name: String,
pub from_email_address: String,
pub template_subject: String,
pub template_content: String,
pub success_redirection_url: String,
pub failure_redirection_url: String,
pub created_at: DateTime<Utc>,
}Fields§
§template_name: String§from_email_address: String§template_subject: String§template_content: String§success_redirection_url: String§failure_redirection_url: String§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for CustomVerificationEmailTemplate
impl Clone for CustomVerificationEmailTemplate
Source§fn clone(&self) -> CustomVerificationEmailTemplate
fn clone(&self) -> CustomVerificationEmailTemplate
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 moreAuto Trait Implementations§
impl Freeze for CustomVerificationEmailTemplate
impl RefUnwindSafe for CustomVerificationEmailTemplate
impl Send for CustomVerificationEmailTemplate
impl Sync for CustomVerificationEmailTemplate
impl Unpin for CustomVerificationEmailTemplate
impl UnsafeUnpin for CustomVerificationEmailTemplate
impl UnwindSafe for CustomVerificationEmailTemplate
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