pub struct AuthVerifyResult {
pub user_id: InlineId,
pub account_namespace: String,
pub status: ClientStatusSnapshot,
}Expand description
Response from verifying an Inline login code.
Fields§
§user_id: InlineIdVerified Inline user ID.
account_namespace: StringAccount/store namespace persisted by the client.
status: ClientStatusSnapshotUpdated client status after persisting the session.
Trait Implementations§
Source§impl Clone for AuthVerifyResult
impl Clone for AuthVerifyResult
Source§fn clone(&self) -> AuthVerifyResult
fn clone(&self) -> AuthVerifyResult
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 AuthVerifyResult
impl Debug for AuthVerifyResult
Source§impl<'de> Deserialize<'de> for AuthVerifyResult
impl<'de> Deserialize<'de> for AuthVerifyResult
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 AuthVerifyResult
Source§impl PartialEq for AuthVerifyResult
impl PartialEq for AuthVerifyResult
Source§fn eq(&self, other: &AuthVerifyResult) -> bool
fn eq(&self, other: &AuthVerifyResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthVerifyResult
impl Serialize for AuthVerifyResult
impl StructuralPartialEq for AuthVerifyResult
Auto Trait Implementations§
impl Freeze for AuthVerifyResult
impl RefUnwindSafe for AuthVerifyResult
impl Send for AuthVerifyResult
impl Sync for AuthVerifyResult
impl Unpin for AuthVerifyResult
impl UnsafeUnpin for AuthVerifyResult
impl UnwindSafe for AuthVerifyResult
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