[][src]Crate globalenv

Globally sets environment variables (and not just for the current process). Example:

use globalenv::set_var;
set_var("ENVTEST", "TESTVALUE").unwrap();

Functions

set_var

Sets a global environment variable. Support for Windows. Linux support TBD.