pub struct Identity {
pub identity_id: String,
pub id: String,
pub user_id: String,
pub identity_data: IdentityData,
pub provider: String,
pub last_sign_in_at: String,
pub created_at: String,
pub updated_at: String,
pub email: Option<String>,
}
Fields§
§identity_id: String
§id: String
§user_id: String
§identity_data: IdentityData
§provider: String
§last_sign_in_at: String
§created_at: String
§updated_at: String
§email: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Identity
impl<'de> Deserialize<'de> for Identity
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 StructuralPartialEq for Identity
Auto Trait Implementations§
impl Freeze for Identity
impl RefUnwindSafe for Identity
impl Send for Identity
impl Sync for Identity
impl Unpin for Identity
impl UnwindSafe for Identity
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