use sqlx::FromRow; #[derive(Debug, FromRow)] pub struct DbUser { pub id: String, pub email: String, pub pref_name: String, pub pw_hash: String, pub last_login: chrono::NaiveDateTime }