batch-impl 0.7.2

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

// A generator in the generic-declaration position has no carrier for its
// fresh declarations (`<*()^3>` would render the fresh tuple as a parameter
// name) — targeted error instead of garbage Rust.
#[batch_impl(<*()^3> Vec<u8>)]
trait BadDecl {}

fn main() {}