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
17
error: structs with unnamed fields must have only one field
 --> $DIR/empty_struct.rs:4:8
  |
4 | struct Empty1;
  |        ^^^^^^

error: structs with unnamed fields must have only one field
 --> $DIR/empty_struct.rs:7:8
  |
7 | struct Empty2();
  |        ^^^^^^

error: the struct must have at least one field
  --> $DIR/empty_struct.rs:10:8
   |
10 | struct Empty3 {}
   |        ^^^^^^