1 2 3 4 5 6 7 8 9
use serde::Deserialize; #[derive(Debug, Clone, Deserialize)] pub struct RabbitSettings { pub server: String, pub port: u16, pub username: String, pub password: String, }