configure_me_codegen 0.4.8

A library for easy processing of application configuration from files, environment variables and command line arguments.
Documentation
1
2
3
4
5
6
            let foo = self.foo.ok_or(ValidationError::MissingField("foo"))?;

            #[allow(clippy::useless_conversion)]
            Ok(super::Config {
                foo: foo.into(),
            })