[][src]Function fungus::sys::vars

pub fn vars() -> Vars

Returns an iterator of (variable, value) pairs of strings, for all the environment variables of the current process. Wraps std::env::vars

The returned iterator contains a snapshot of the process's environment variables at the time of this invocation. Modifications to environment variables afterwards will not be reflected in the returned iterator.

Panics

While iterating, the returned iterator will panic if any key or value in the environment is not valid unicode. If this is not desired, consider using env::vars_os().

Examples

use fungus::prelude::*;

for (key, value) in sys::vars() {
    println!("{}: {}", key, value);
}