auto-default 0.2.0

Macro that adds a default field value of `Default::default()` to fields that don't have one
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# v0.2.0

It is now an error to use `#[auto_default(skip)]` on a field that has a default value:

```rust
#[auto_default]
struct User {
    #[auto_default(skip)]
    age: u32 = 4,
}
```

The `#[auto_default(skip)]` attribute will do nothing:

# v0.1.0

Initial release