aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/func/program_fallback_gen.rs
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: replace pack! macros with derive-based pipeline types魏曹先生47 hours1-2/+6
| | | | | | | | | Remove the `pack!`, `pack_err!`, `pack_structural!`, and `pack_err_structural!` macros, replacing all pipeline type definitions with `#[derive(Grouped)]` and `#[derive(Grouped, Wrap)]` attributes. This changes the generated struct shape from named-field structs with an `inner` field to tuple structs accessed via `.0`, and removes the auto-generated `name` and `info` fields from error types.
* chore: add "Doc Not Optimize" comments to source files魏曹先生5 days1-0/+1
| | | | | Mark all source files with a comment indicating they are not optimized for documentation purposes.
* chore!: rename ErrorDispatcherNotFound to EntryFallback魏曹先生2026-08-031-1/+1
| | | | | | | | Rename the internal fallback type and its associated `ProgramCollect` plumbing from `ErrorDispatcherNotFound`/`build_dispatcher_not_found` to `EntryFallback`/`build_entry_fallback`, along with the generated enum variant and pack type. Update all documentation, examples, and tests accordingly.
* feat(macros): split monolith into one-macro-per-file modules魏曹先生2026-07-261-0/+23