useserde::{Deserialize, Serialize};/// Configuration for reloading quadit.
/// Used to serialize the contents of `config.yaml`
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]#[serde(rename_all ="camelCase")]pubstructConfigReload{/// The URL of the remote endpoint containing configuration changes.
pubconfig_u_r_l: String,
/// The interval to poll in milliseconds
pubinterval:u64,
}