pub trait OptionsSnapshot<T> {
    fn get(&self, name: Option<&str>) -> &T;
}
Expand description

Defines the behavior for a snapshot of configuration options.

Required Methods

Gets the configuration options with the specified name.

Arguments
  • name - The optional name of the options to retrieve

Implementors