ibuilder 0.1.8

Interactive builder for Rust types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ibuilder::*;

#[derive(Debug, IBuilder)]
struct Empty1;

#[derive(Debug, IBuilder)]
struct Empty2();

#[derive(Debug, IBuilder)]
struct Empty3 {}

fn main() {
    Empty1::builder();
    Empty2::builder();
    Empty3::builder();
}