pub trait OptionsSnapshot<T: Value> { // Required method fn get(&self, name: Option<&str>) -> Ref<T>; }
Defines the behavior for a snapshot of configuration Options.
Options
Gets the configuration options with the specified name.
name