本文简要介绍rust语言中 Macro std::option_env
的用法。
用法
macro_rules! option_env {
($name : expr $(,) ?) => { ... };
}
可选择在编译时检查环境变量。
如果指定的环境变量在编译时存在,这将扩展为类型为Option<&'static str>
的表达式,其值为环境变量值的Some
。如果环境变量不存在,那么这将扩展为 None
。有关此类型的更多信息,请参阅 Option<T>
。
无论环境变量是否存在,使用此宏时都不会发出编译时错误。
例子
let key: Option<&'static str> = option_env!("SECRET_KEY");
println!("the secret key might be: {:?}", key);
相关用法
- Rust once用法及代码示例
- Rust once_with用法及代码示例
- 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 i16.log10用法及代码示例
- Rust LowerExp用法及代码示例
- Rust HashSet.get_or_insert_with用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Macro std::option_env。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。