batch-impl 0.7.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
Documentation placeholder for the `#name{body}` fill-by-name directive.

`#name{body}` looks up the single trait item named `name` — a method, an
associated const, or an associated type — and fills it with `body` (the
body must match that item's shape).

```
# use batch_impl::batch_impl;
#[batch_impl(Box<Vec<u32>> #count{self.len()})]
trait L { fn count(&self) -> usize; }
# fn main() {}
```

**Documentation marker only — never call this function.**