pub struct UserRow {
pub id: i64,
pub username: String,
pub password_hash: String,
pub totp_secret: String,
pub recovery_codes_hash: Vec<String>,
pub revoked_at: Option<String>,
}Fields§
§id: i64§username: String§password_hash: String§totp_secret: String§recovery_codes_hash: Vec<String>§revoked_at: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for UserRow
impl RefUnwindSafe for UserRow
impl Send for UserRow
impl Sync for UserRow
impl Unpin for UserRow
impl UnsafeUnpin for UserRow
impl UnwindSafe for UserRow
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