pub trait Factory<T: Value> { // Required method fn create(&self, name: &str) -> Result<T, Error>; }
Defines the behavior of a configuration options factory.
Creates and returns new configuration options.
name