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