1 2 3 4 5 6 7 8 9
use serde_derive::{Serialize, Deserialize}; #[derive(Serialize, Deserialize, Default,Debug)] pub struct SqlUser { pub password: String, pub name: String, pub instance: String, pub project: String }