pub struct ResendVerificationData {
pub email: String,
pub captcha: Option<String>,
}Expand description
Resend information
Fields§
§email: StringEmail associated with the account
captcha: Option<String>Captcha verification code
Trait Implementations§
Source§impl Clone for ResendVerificationData
impl Clone for ResendVerificationData
Source§fn clone(&self) -> ResendVerificationData
fn clone(&self) -> ResendVerificationData
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 ResendVerificationData
impl Debug for ResendVerificationData
Source§impl Default for ResendVerificationData
impl Default for ResendVerificationData
Source§fn default() -> ResendVerificationData
fn default() -> ResendVerificationData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResendVerificationData
impl RefUnwindSafe for ResendVerificationData
impl Send for ResendVerificationData
impl Sync for ResendVerificationData
impl Unpin for ResendVerificationData
impl UnwindSafe for ResendVerificationData
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