Trait Configurable
pub trait Configurable {
// Required methods
fn set(&mut self, name: &str, value: &str) -> Result<(), SetError>;
fn enable(&mut self, name: &str) -> Result<(), SetError>;
}
Expand description
A string-based configurator for settings groups.
The Configurable
protocol allows settings to be modified by name before a finished Flags
struct is created.