#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct BrokerConfig {
pub house_token_username: &'static str,
pub house_token_password: &'static str,
pub rate_capacity: u8,
pub rate_per_sec: u8,
pub max_violations: u8,
pub max_outbox_drops: u8,
pub qos1_retry_ms: u32,
pub qos1_max_retries: u8,
}
pub const GATOMQTT_CONFIG: BrokerConfig = BrokerConfig {
house_token_username: "house",
house_token_password: "secret",
rate_capacity: 20,
rate_per_sec: 10,
max_violations: 50,
max_outbox_drops: 16,
qos1_retry_ms: 5_000,
qos1_max_retries: 3,
};