pub trait ConfigSet { // Required method fn set<T: Serialize>(&self, key: &str, value: T) -> Result<(), Error>; }
Set a configuration value