batch-impl 0.8.1

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
1
2
3
4
5
6
7
8
use batch_impl::batch_impl;

// A composite template cannot destructure a non-path target: the target
// must be structurally isomorphic to the template.
#[batch_impl(i32 impl{Rc<T>})]
trait BadShape {}

fn main() {}