ibuilder 0.1.8

Interactive builder for Rust types
Documentation
1
2
3
4
5
6
7
8
9
10
use ibuilder::*;

#[derive(IBuilder)]
pub struct Foo {
    bar: u8,
}

fn main() {
    Builder::<Foo>::default();
}