pub struct AdminUser {
pub id: i64,
pub username: String,
pub password_hash: String,
pub created_at: i64,
}Expand description
An admin user from the admins table.
Fields§
§id: i64§username: String§password_hash: String§created_at: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdminUser
impl RefUnwindSafe for AdminUser
impl Send for AdminUser
impl Sync for AdminUser
impl Unpin for AdminUser
impl UnwindSafe for AdminUser
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