A derive macro for automatically filling a struct based on the current environment.
```rust
struct Env {
secretkey: String,
intdata: i32, // Any type that implements FromStr
can be used
optional_data: Option
// Setup environment variables... env::setvar("SECRETKEY", "hunter2"); env::setvar("INTDATA", "128"); env::removevar("OPTIONALDATA");
// ... Struct can now be loaded from current environment.
// Any missing non-Option
field results in a panic.
// Field names are converted to SCREAMINGSNAKECASE, i.e. secret_key
will load the SECRET_KEY
env var.
let env =
// Add data for optional_data
field...
env::setvar("OPTIONALDATA", "37");
// ... And it's now available!
let env =
In almost every codebase where I rely on environment variable, I end up writing a Env
struct which fill its fields
based on what's currently in the environment.
Usually, I have to define a list of mandatory variables, and then I have to convert the data myself.
I thought that given how powerful Rust's macros are, it would be a good fit for a first proc macro!
Combined with dotenv
, this makes for relatively painless environment variables management!
Result
-based API (no panic)lazy_static
or similar