#field #count #struct #derive

macro field_count_derive

Derive the field count for a struct

2 releases

0.1.1 Sep 23, 2020
0.1.0 Sep 22, 2020

#126 in #count

Download history 10119/week @ 2024-11-17 5500/week @ 2024-11-24 7995/week @ 2024-12-01 6813/week @ 2024-12-08 6015/week @ 2024-12-15 1766/week @ 2024-12-22 1976/week @ 2024-12-29 6493/week @ 2025-01-05 9090/week @ 2025-01-12 6004/week @ 2025-01-19 5568/week @ 2025-01-26 7024/week @ 2025-02-02 9471/week @ 2025-02-09 7443/week @ 2025-02-16 7720/week @ 2025-02-23 7686/week @ 2025-03-02

32,754 downloads per month
Used in 2 crates (via field_count)

Custom license

3KB

field_count

Derive the field count for a struct.

📦 Getting Started

# 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
}

🙏 Credits

This crate was inspired by the following StackOverflow answer by Lukas Kalbertodt.

Dependencies

~1.5MB
~38K SLoC