Env Convert

A convenience library for dealing with environment variables, handling basic type conversions and default values.

Getting values

get_default_env_var takes the environment variable name and the default value as a string if it does not exist. It returns an EnvVar that can be converted into a Result with the conversion type. You can then use that result to detect if the conversion happened successfully.

get_env_var takes the environment variable name and returns a Result<EnvVar,std::env::VarError>.

```rust let maxconnectionsresult: Result = getdefaultenvvar("MAXDBCONNECTIONS", "5").into(); let maxconnections = maxconnectionsresult.expect("MAXDBCONNECTIONS must be an integer");

let envresult: Result = getenvvar("DEFAULTGREETING").expect("DEFAULT_GREETING is required").into();

// You can also convert strings directly let defaultgreeting: String = getdefaultenvvar("DEFAULT_GREETING", "hello").into(); ```

Conversions

The following conversions are implemented in this library:

To implement your own, you can implement the From<EnvVar> trait for Result<YourType, EnvVarConversionError>.

Versions

Until this reaches version 1, I will make an attempt to keep the API stable but no guarantees. After that this library will follow semantic versioning.