aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/gen_program.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat(core): move config types to public config module魏曹先生31 hours1-1/+1
| | | | | | | | | Refactor program configuration types into a dedicated public `config` module under `mingling_core`, making `StructuralRendererSetting` accessible via `mingling_core::config` instead of the crate root. Update all internal references and setup modules to use the new `config::` path convention.
* chore: add "Doc Not Optimize" comments to source files魏曹先生2 days1-0/+1
| | | | | Mark all source files with a comment indicating they are not optimized for documentation purposes.
* refactor: use `Self` and simplify lifetimes in setup types魏曹先生5 days1-4/+6
| | | | | | | Replace `ThisProgram` with `Self` where appropriate and mark constructors as `#[must_use]` and `const` where possible. Simplify explicit lifetimes in `ProgramSetup` and `Default` implementations using elided lifetimes.
* feat(gen_program): add get_metadata method stub魏曹先生11 days1-0/+5
|
* chore!: rename ErrorDispatcherNotFound to EntryFallback魏曹先生12 days1-6/+6
| | | | | | | | 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.
* fix: add generic program entry point variant魏曹先生13 days1-0/+2
|
* feat(gen_program): add Entry struct and program constructors魏曹先生13 days1-3/+37
| | | | | | | Add `Entry` struct with `pub(crate)` visibility for `inner` fields, plus `new()` and `this()` constructors on `ThisProgram` for docs.rs demonstration of the `gen_program!` macro expansion.
* feat: add docs.rs generated program documentation module魏曹先生13 days1-0/+231