batch-impl 0.9.1

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0425]: cannot find type `A` in this scope
 --> tests/ui/fn_return_reapply.rs:6:17
  |
6 | #[batch_impl(fn(A) -> B   C)]
  |                 ^ not found in this scope

error[E0425]: cannot find type `B` in this scope
 --> tests/ui/fn_return_reapply.rs:6:23
  |
6 | #[batch_impl(fn(A) -> B   C)]
  |                       ^ not found in this scope

error[E0425]: cannot find type `C` in this scope
 --> tests/ui/fn_return_reapply.rs:6:27
  |
6 | #[batch_impl(fn(A) -> B   C)]
  |                           ^ not found in this scope