本文简要介绍rust语言中 Function std::env::vars
的用法。
用法
pub fn vars() -> Vars
为当前进程的所有环境变量返回字符串(变量,值)对的迭代器。
返回的迭代器包含此调用时进程环境变量的快照。之后对环境变量的修改将不会反映在返回的迭代器中。
Panics
迭代时,如果环境中的任何键或值不是有效的 unicode,则返回的迭代器将崩溃。如果不需要,请考虑使用 env::vars_os()
。
例子
use std::env;
// We will iterate through the references to the element returned by
// env::vars();
for (key, value) in env::vars() {
println!("{}: {}", key, value);
}
相关用法
- Rust vars_os用法及代码示例
- Rust var用法及代码示例
- Rust var_os用法及代码示例
- Rust variant_count用法及代码示例
- Rust vec用法及代码示例
- Rust UdpSocket.set_multicast_loop_v6用法及代码示例
- Rust i64.overflowing_add_unsigned用法及代码示例
- Rust Box.downcast用法及代码示例
- Rust BTreeMap.last_key_value用法及代码示例
- Rust str.make_ascii_uppercase用法及代码示例
- Rust u128.checked_pow用法及代码示例
- Rust usize.wrapping_mul用法及代码示例
- Rust AtomicU8.fetch_sub用法及代码示例
- Rust PanicInfo.payload用法及代码示例
- Rust MaybeUninit.assume_init_mut用法及代码示例
- Rust String.try_reserve用法及代码示例
- Rust Mutex.new用法及代码示例
- Rust f32.exp用法及代码示例
- Rust Result.unwrap_or_else用法及代码示例
- Rust slice.sort_unstable_by_key用法及代码示例
- Rust Formatter.precision用法及代码示例
- Rust i128.log2用法及代码示例
- Rust OsStr.to_ascii_uppercase用法及代码示例
- Rust f32.hypot用法及代码示例
- Rust RefCell.try_borrow_unguarded用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Function std::env::vars。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。