use postgres::Row; use serde::{Deserialize, Serialize}; use zeroize::Zeroize; #[derive(Clone, Debug, Zeroize)] #[zeroize(drop)] pub struct UserRecord { pub id: i32, pub name: String, pub email: String, pub password_hash: Vec, pub salt: Vec, } impl UserRecord { pub fn from_ordered_row(row: &Row) -> Self { Self { id: row.get(0), name: row.get(1), email: row.get(2), password_hash: row.get(3), salt: row.get(4), } } } #[derive(Clone, Debug, Deserialize, Serialize)] pub struct Permission { pub id: i32, pub name: String, pub description: String, }