Trait mas_config::ConfigurationSection
source · pub trait ConfigurationSection: Sized + DeserializeOwned {
const PATH: Option<&'static str> = None;
// Provided methods
fn validate(&self, _figment: &Figment) -> Result<(), FigmentError> { ... }
fn extract(figment: &Figment) -> Result<Self, FigmentError> { ... }
}
Expand description
Trait implemented by all configuration section to help loading specific part of the config and generate the sample config.
Provided Associated Constants§
Provided Methods§
Object Safety§
This trait is not object safe.