pub struct VerifyEmailResponse {
pub one_time_code: Option<String>,
pub verification_id: Option<String>,
}
Expand description
VerifyEmailResponse :
Fields§
§one_time_code: Option<String>
§verification_id: Option<String>
Implementations§
Source§impl VerifyEmailResponse
impl VerifyEmailResponse
Sourcepub fn new() -> VerifyEmailResponse
pub fn new() -> VerifyEmailResponse
Trait Implementations§
Source§impl Clone for VerifyEmailResponse
impl Clone for VerifyEmailResponse
Source§fn clone(&self) -> VerifyEmailResponse
fn clone(&self) -> VerifyEmailResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VerifyEmailResponse
impl Debug for VerifyEmailResponse
Source§impl Default for VerifyEmailResponse
impl Default for VerifyEmailResponse
Source§fn default() -> VerifyEmailResponse
fn default() -> VerifyEmailResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VerifyEmailResponse
impl<'de> Deserialize<'de> for VerifyEmailResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VerifyEmailResponse
impl PartialEq for VerifyEmailResponse
Source§impl Serialize for VerifyEmailResponse
impl Serialize for VerifyEmailResponse
impl StructuralPartialEq for VerifyEmailResponse
Auto Trait Implementations§
impl Freeze for VerifyEmailResponse
impl RefUnwindSafe for VerifyEmailResponse
impl Send for VerifyEmailResponse
impl Sync for VerifyEmailResponse
impl Unpin for VerifyEmailResponse
impl UnwindSafe for VerifyEmailResponse
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