use serde::Serialize; #[derive(Debug, sqlx::FromRow, Clone, Serialize)] pub struct User { pub id: i64, pub name: String, pub email: String, }