fields-iter 0.0.3

A crate that allows you inspecting the fields of structs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fields_iter::FieldsInspect;

#[derive(FieldsInspect)]
enum Foo {}

#[derive(FieldsInspect)]
union Bar {
    _foo: (),
}

fn main() {}