pub struct AuthRegistrationResponse {
pub email: String,
pub verified: bool,
pub verification_code: Option<String>,
}Fields§
§email: String§verified: bool§verification_code: Option<String>Trait Implementations§
Source§impl Clone for AuthRegistrationResponse
impl Clone for AuthRegistrationResponse
Source§fn clone(&self) -> AuthRegistrationResponse
fn clone(&self) -> AuthRegistrationResponse
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 AuthRegistrationResponse
impl Debug for AuthRegistrationResponse
Source§impl<'de> Deserialize<'de> for AuthRegistrationResponse
impl<'de> Deserialize<'de> for AuthRegistrationResponse
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
impl Eq for AuthRegistrationResponse
Source§impl PartialEq for AuthRegistrationResponse
impl PartialEq for AuthRegistrationResponse
Source§impl Serialize for AuthRegistrationResponse
impl Serialize for AuthRegistrationResponse
impl StructuralPartialEq for AuthRegistrationResponse
Auto Trait Implementations§
impl Freeze for AuthRegistrationResponse
impl RefUnwindSafe for AuthRegistrationResponse
impl Send for AuthRegistrationResponse
impl Sync for AuthRegistrationResponse
impl Unpin for AuthRegistrationResponse
impl UnsafeUnpin for AuthRegistrationResponse
impl UnwindSafe for AuthRegistrationResponse
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