5

std::env::vars_os - Rust

 3 years ago
source link: https://doc.rust-lang.org/stable/std/env/fn.vars_os.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Function std::env::vars_os1.0.0[−][src]

pub fn vars_os() -> VarsOs

Returns an iterator of (variable, value) pairs of OS strings, for all the environment variables of the current process.

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.

Examples

use std::env;

// We will iterate through the references to the element returned by
// env::vars_os();
for (key, value) in env::vars_os() {
    println!("{:?}: {:?}", key, value);
}
Run

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK