pub trait SendDeleteAccountVerification:
Send
+ Sync
+ 'static {
// Required method
fn send_delete_account_verification(
&self,
payload: DeleteAccountVerificationEmail,
request: Option<&Request<Vec<u8>>>,
) -> Result<(), RustAuthError>;
}Expand description
Sends a verification email before deleting the account.
Required Methods§
fn send_delete_account_verification( &self, payload: DeleteAccountVerificationEmail, request: Option<&Request<Vec<u8>>>, ) -> Result<(), RustAuthError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".