pub trait ConfigurationSource {
    fn build(
        &self,
        builder: &dyn ConfigurationBuilder
    ) -> Box<dyn ConfigurationProvider>; }
Expand description

Represents a source of configuration key/value pairs for an application.

Required Methods

Builds the configuration provider for this source.

Arguments
  • builder - The builder used to build the provider

Implementors