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