impl-tools 0.11.4

Helper macros: autoimpl
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: expected `Self` or `Trait for Self`
 --> compile-errors/nightly/expect-self-anon.rs:6:14
  |
6 |         impl () {
  |              ^^

error: expected expression, found end of macro arguments
  --> compile-errors/nightly/expect-self-anon.rs:2:13
   |
 2 |       let _ = impl_tools::impl_anon! {
   |  _____________^
 3 | |         #[derive(Clone, Debug)]
 4 | |         struct (i32 = 123);
...  |
11 | |     };
   | |_____^