pub trait ConfigurationSection: Configuration + Deref<Target = dyn Configuration> {
    fn key(&self) -> &str;
    fn path(&self) -> &str;
    fn value(&self) -> &str;
}
Expand description

Defines the behavior for a section of application configuration values.

Required Methods

Gets the key this section occupies in its parent.

Gets the full path to this section within the configuration.

Gets the section value.

Trait Implementations

Gets a value indicating whether the configuration section exists. Read more

Implementors