From 184cee5d04945b6f467d8c041b2c27df9eb1fb9b Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 3 Aug 2026 01:17:21 +0800 Subject: fix: add generic program entry point variant --- mingling/src/gen_program.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mingling') diff --git a/mingling/src/gen_program.rs b/mingling/src/gen_program.rs index 18d9117..aa0c4b5 100644 --- a/mingling/src/gen_program.rs +++ b/mingling/src/gen_program.rs @@ -23,6 +23,8 @@ pub struct Entry { /// /// It contains the IDs of all types for this program, registered by the `register_type!` macro. pub enum ThisProgram { + /// The generic program entry point. + Entry, /// Indicates that no matching renderer was found for the given output. ErrorRendererNotFound, /// Indicates that no matching dispatcher was found for the given arguments. -- cgit