2次发布
0.1.1 | 2020年9月23日 |
---|---|
0.1.0 | 2020年9月22日 |
22 在 #u16
26,093 每月下载量
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
}
🙏 致谢
此crate受到以下StackOverflow答案的启发:Lukas Kalbertodt的回答。
依赖项
~1.5MB
~35K SLoC