pub trait AppConfig<'a>: Clone + Deserialize<'a> + Serialize {
    fn builder(&mut self) -> DefaultConfigBuilder { ... }
    fn constructor(&mut self) -> Result<Self, ConfigError> { ... }
}

Provided Methods

Implementors