envload

A derive macro for automatically filling a struct based on the current environment.

Example

```rust

[derive(Envload)]

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 = ::loadenv(); asserteq!(env, Env { secretkey: String::from("hunter2"), intdata: 128, optional_data: None });

// Add data for optional_data field... env::setvar("OPTIONALDATA", "37");

// ... And it's now available! let env = ::loadenv(); asserteq!(env.optional_data, Some(37)); ```

Motivation

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!

Future features