arraygen 0.1.15

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 those tokens.
struct Empty{}

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

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