pub struct User {Show 13 fields
pub id: String,
pub username: String,
pub email: String,
pub password_hash: String,
pub salt: String,
pub created_at: DateTime<Utc>,
pub last_login: Option<DateTime<Utc>>,
pub is_active: bool,
pub is_verified: bool,
pub mfa_enabled: bool,
pub mfa_secret: Option<String>,
pub failed_login_attempts: u32,
pub locked_until: Option<DateTime<Utc>>,
}Expand description
User account information
Fields§
§id: String§username: String§email: String§password_hash: String§salt: String§created_at: DateTime<Utc>§last_login: Option<DateTime<Utc>>§is_active: bool§is_verified: bool§mfa_enabled: bool§mfa_secret: Option<String>§failed_login_attempts: u32§locked_until: Option<DateTime<Utc>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
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
Auto Trait Implementations§
impl Freeze for User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnwindSafe for User
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