Automatically create a `new` implementation for your Structs (Unnamed, and Named).
```rust
use new_derivable::New;
pub struct Human {
}
```
will ceate
```rust
impl Human {
}
```
so then you can do
```rust
fn main() {
}
```
Which will give us
```rust
Human {
}
```