batch-impl 0.5.6

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
1
2
3
4
5
6
7
// 错误:`batch_trait!(unsafe)` — `unsafe` 后没有任何 token,
// macro 期望 trait 名称
use batch_impl::batch_trait;

batch_trait!(unsafe);

fn main() {}