pub struct RecoveredIdentity {
pub identity: IdentitySummary,
pub user_id: Option<String>,
pub access_token_present: bool,
}Fields§
§identity: IdentitySummary§user_id: Option<String>§access_token_present: boolTrait Implementations§
Source§impl Clone for RecoveredIdentity
impl Clone for RecoveredIdentity
Source§fn clone(&self) -> RecoveredIdentity
fn clone(&self) -> RecoveredIdentity
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 RecoveredIdentity
impl Debug for RecoveredIdentity
Source§impl<'de> Deserialize<'de> for RecoveredIdentity
impl<'de> Deserialize<'de> for RecoveredIdentity
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 RecoveredIdentity
impl PartialEq for RecoveredIdentity
Source§fn eq(&self, other: &RecoveredIdentity) -> bool
fn eq(&self, other: &RecoveredIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecoveredIdentity
impl Serialize for RecoveredIdentity
impl StructuralPartialEq for RecoveredIdentity
Auto Trait Implementations§
impl Freeze for RecoveredIdentity
impl RefUnwindSafe for RecoveredIdentity
impl Send for RecoveredIdentity
impl Sync for RecoveredIdentity
impl Unpin for RecoveredIdentity
impl UnsafeUnpin for RecoveredIdentity
impl UnwindSafe for RecoveredIdentity
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