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
7
            #[allow(clippy::unnecessary_lazy_evaluations)]
            let foo = self.foo.unwrap_or_else(|| { 42 });

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