batch-impl 0.6.7

A proc-macro library for batch generating trait impls with a powerful DSL
Documentation
1
2
3
4
5
6
7
8
9
10
//! Semantic analysis of trait definitions: generic bound collection and where-predicate
//! reference collection.
//!
//! Extracts structured info ([`TraitBounds`]) from `syn::ItemTrait`, serving codegen's
//! bound inheritance, preprocess's `A<>` copying, and `#blanket` generic-arg reuse.
//! `mod.rs` aggregates the re-exports; callers write `crate::analyze::X`.

pub(crate) mod trait_bounds;

pub(crate) use trait_bounds::*;