从 std::env::consts::OS=="windows" 在 Rust 中定义一个静态布尔值

Define a static boolean in Rust from std::env::consts::OS=="windows"

我想在 Rust 文件中创建一个名为 IS_WINDOWS 的全局静态布尔值:

lazy_static! {
    pub static ref IS_WINDOWS: bool = std::env::consts::OS=="windows";
}

但是,当我这样做时,任何从其他地方引用 IS_WINDOWS 值的东西都不会将其视为 bool,而是将其视为自定义 IS_WINDOWS 结构,即尝试做:

if crate::globals::IS_WINDOWS {
}

...导致错误:

mismatched types
expected `bool`, found struct `globals::IS_WINDOWS`

事实证明,我需要做的就是使用 * 取消引用静态变量:

if *crate::globals::IS_WINDOWS {
}