2个版本
0.1.1 | 2020年9月23日 |
---|---|
0.1.0 | 2020年9月22日 |
#113 在 #count
每月24,339次下载
在 field_count 中使用
3KB
field_count
为结构体推导字段数量。
📦 开始使用
# Cargo.toml
[dependencies]
field_count = "0.1"
// main.rs
use field_count::FieldCount;
#[derive(FieldCount)]
struct MyStruct {
first_field: i32,
second_field: String,
third_field: u16,
}
fn main() {
println!("{}", MyStruct::field_count()); // 3
}
🙏 致谢
本库受到以下StackOverflow答案的启发,作者Lukas Kalbertodt。
依赖项
~1.5MB
~36K SLoC