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 (const: unstable) · 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
Source§impl Serialize for ResendVerificationData
impl Serialize for ResendVerificationData
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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 UnsafeUnpin 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