1 2 3 4 5 6 7
#[derive(Debug)] #[cfg_attr(feature = "backend-sql", derive(sqlx::Type))] pub struct User { pub username: String, pub pwhash: String, pub session_id: Option<String>, }