use serde::Serialize; #[derive(Debug, sqlx::FromRow, Serialize)] pub struct Report { pub date: String, pub name: String, pub amount: i64, pub action: Action, } #[derive(Debug, PartialEq, Serialize, sqlx::Type)] pub enum Action { Created, Updated, Deleted, }