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