pub struct IdentityLink {
pub user_id: Uuid,
pub provider: IdentityProvider,
pub subject: String,
pub created_at: DateTime<Utc>,
}Expand description
Link between a user and an external identity provider (or local password).
Fields§
§user_id: Uuid§provider: IdentityProvider§subject: StringStable provider-side ID (e.g. GitHub user id; for password = email).
created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for IdentityLink
impl Clone for IdentityLink
Source§fn clone(&self) -> IdentityLink
fn clone(&self) -> IdentityLink
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 ComposeSchema for IdentityLink
impl ComposeSchema for IdentityLink
Source§impl Debug for IdentityLink
impl Debug for IdentityLink
Source§impl<'de> Deserialize<'de> for IdentityLink
impl<'de> Deserialize<'de> for IdentityLink
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 IdentityLink
Source§impl PartialEq for IdentityLink
impl PartialEq for IdentityLink
Source§fn eq(&self, other: &IdentityLink) -> bool
fn eq(&self, other: &IdentityLink) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IdentityLink
impl Serialize for IdentityLink
impl StructuralPartialEq for IdentityLink
Auto Trait Implementations§
impl Freeze for IdentityLink
impl RefUnwindSafe for IdentityLink
impl Send for IdentityLink
impl Sync for IdentityLink
impl Unpin for IdentityLink
impl UnsafeUnpin for IdentityLink
impl UnwindSafe for IdentityLink
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.