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 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 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§fn eq(&self, other: &VerifyEmailResponse) -> bool
fn eq(&self, other: &VerifyEmailResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for VerifyEmailResponse
impl Serialize for VerifyEmailResponse
impl StructuralPartialEq for VerifyEmailResponse
Auto Trait Implementations§
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