arraygen 0.3.2

Derive macro for generating arrays from struct fields.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate arraygen;

use arraygen::Arraygen;

#[derive(Arraygen)] //~WARNING 'in_array' shouldn't contain these tokens.
struct Empty{}

fn main() {
    let _ = Empty{};    
}

// @TODO Not active, activate it when is possible on stable.