arraygen 0.1.15

Derive macro for generating arrays from struct fields.
Documentation
1
2
3
4
5
6
7
8
9
#![no_main]

extern crate arraygen;

use arraygen::Arraygen;

#[derive(Arraygen)]
#[gen_array(pub my_array: i32)] //~ERROR 'gen_array' was used with the wrong syntax.
struct Empty{}