Same as the [`autotrait`][https://github.com/bearcove/autotrait] crate.
Use this crate if the first one didn't work.
This crate allow you to define traits without repeating yourself with a `trait` block.
So you only need the following:
```rust,ignore
struct Stuff;
impl MyTrait for Stuff {
}
```