本文簡要介紹rust語言中 Function std::env::var_os
的用法。
用法
pub fn var_os<K: AsRef<OsStr>>(key: K) -> Option<OsString>
從當前進程中獲取環境變量key
,如果變量未設置或有另一個錯誤,則返回 None
。
請注意,該方法不會檢查環境變量是否為有效的 Unicode。如果您想在無效的 UTF-8 上出錯,請改用 var
函數。
錯誤
如果未設置環境變量,此函數將返回錯誤。
如果環境變量的名稱包含等號字符 (=
) 或 NUL 字符,此函數可能會返回錯誤。
如果環境變量的值包含 NUL 字符,此函數可能會返回錯誤。
例子
use std::env;
let key = "HOME";
match env::var_os(key) {
Some(val) => println!("{}: {:?}", key, val),
None => println!("{} is not defined in the environment.", key)
}
相關用法
- Rust vars_os用法及代碼示例
- Rust var用法及代碼示例
- Rust vars用法及代碼示例
- 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::var_os。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。