本文簡要介紹rust語言中 Macro std::env
的用法。
用法
macro_rules! env {
($name : expr $(,) ?) => { ... };
($name : expr, $error_msg : expr $(,) ?) => { ... };
}
在編譯時檢查環境變量。
該宏將在編譯時擴展為指定環境變量的值,生成 &'static str
類型的表達式。
如果未定義環境變量,則會發出編譯錯誤。要不發出編譯錯誤,請改用 option_env!
宏。
例子
let path: &'static str = env!("PATH");
println!("the $PATH variable at the time of compiling was: {}", path);
您可以通過將字符串作為第二個參數傳遞來自定義錯誤消息:
let doc: &'static str = env!("documentation", "what's that?!");
如果未定義documentation
環境變量,您將收到以下錯誤:
error: what's that?!
相關用法
- Rust eq用法及代碼示例
- Rust eprintln用法及代碼示例
- Rust escape_default用法及代碼示例
- Rust empty用法及代碼示例
- Rust exit用法及代碼示例
- Rust eprint用法及代碼示例
- 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-lang.org大神的英文原創作品 Macro std::env。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。