std::env::vars_os

Function std::env::vars_os

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);
}

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/env/fn.vars_os.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部