#[non_exhaustive]pub struct CustomVerificationEmailTemplateMetadata { /* private fields */ }Expand description
Contains information about a custom verification email template.
Implementations§
source§impl CustomVerificationEmailTemplateMetadata
impl CustomVerificationEmailTemplateMetadata
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the custom verification email template.
sourcepub fn from_email_address(&self) -> Option<&str>
pub fn from_email_address(&self) -> Option<&str>
The email address that the custom verification email is sent from.
sourcepub fn template_subject(&self) -> Option<&str>
pub fn template_subject(&self) -> Option<&str>
The subject line of the custom verification email.
sourcepub fn success_redirection_url(&self) -> Option<&str>
pub fn success_redirection_url(&self) -> Option<&str>
The URL that the recipient of the verification email is sent to if his or her address is successfully verified.
sourcepub fn failure_redirection_url(&self) -> Option<&str>
pub fn failure_redirection_url(&self) -> Option<&str>
The URL that the recipient of the verification email is sent to if his or her address is not successfully verified.
source§impl CustomVerificationEmailTemplateMetadata
impl CustomVerificationEmailTemplateMetadata
sourcepub fn builder() -> CustomVerificationEmailTemplateMetadataBuilder
pub fn builder() -> CustomVerificationEmailTemplateMetadataBuilder
Creates a new builder-style object to manufacture CustomVerificationEmailTemplateMetadata.
Trait Implementations§
source§impl Clone for CustomVerificationEmailTemplateMetadata
impl Clone for CustomVerificationEmailTemplateMetadata
source§fn clone(&self) -> CustomVerificationEmailTemplateMetadata
fn clone(&self) -> CustomVerificationEmailTemplateMetadata
Returns a copy 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 PartialEq<CustomVerificationEmailTemplateMetadata> for CustomVerificationEmailTemplateMetadata
impl PartialEq<CustomVerificationEmailTemplateMetadata> for CustomVerificationEmailTemplateMetadata
source§fn eq(&self, other: &CustomVerificationEmailTemplateMetadata) -> bool
fn eq(&self, other: &CustomVerificationEmailTemplateMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.