6 个稳定版本
使用旧的 Rust 2015
1.1.0 | 2020 年 12 月 13 日 |
---|---|
1.0.4 | 2020 年 6 月 14 日 |
1.0.3 | 2019 年 4 月 7 日 |
1.0.2 | 2017 年 6 月 17 日 |
1.0.0 | 2016 年 4 月 16 日 |
#1 在 #static-assert
1,789 每月下载量
7KB
static_assert
宏
Cargo.toml
[dependencies]
static_assert_macro = "1"
您的代码 (Rust 2018)
use static_assert_macro::static_assert;
static_assert!(1 < 2);
fn main() {
static_assert!(3 < 4);
static_assert!(10 < 10); // build failure
}
对于 Rust 2015,将 use static_assert_macro::static_assert;
替换为
#[macro_use]
extern crate static_assert_macro;
更多详情,请访问
最低支持的 Rust 版本
static_assert_macro < 1.1
:足够旧的 Rust,如 1.8 (2016-04-14)static_assert_macro >= 1.1
:[Rust 1.37 (2019-08-15)](https://github.com/rust-lang/rust/blob/master/RELEASES.md#language-11),稳定了underscore_const_names
许可证
此软件包是免费软件,根据 [Apache 2.0 许可证](https://github.com/nodakai/rust-static_assert_macro/blob/3a41968ba4989d47ec720ec0d0e1db46cef14abc/LICENSE)分发。