diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-01 15:48:41 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-01 15:48:41 +0800 |
| commit | 3de10ca22cca06c4d9069984d0e66e370a331dde (patch) | |
| tree | 7e8a9b035c360c016cde848b3442d3e1d5dcac5e /mingling_core/src/lib.rs | |
| parent | f3d6f76dfd07c35dabc11aa86d86c3671cd283c5 (diff) | |
Replace typeid-based dispatch with enum-based dispatch
- Add `Groupped` trait and `member_id` to `AnyOutput`
- Add generic parameter `G` to `Dispatcher`, `Chain`, `Program` etc
- Remove `hint` module and its marker types
- Update macros to support explicit group specification
- Add `gen_program` macro for generating enum-based programs
- Add `GroupProcess` marker type for type-level grouping
Diffstat (limited to 'mingling_core/src/lib.rs')
| -rw-r--r-- | mingling_core/src/lib.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mingling_core/src/lib.rs b/mingling_core/src/lib.rs index 10a1830..3d2be11 100644 --- a/mingling_core/src/lib.rs +++ b/mingling_core/src/lib.rs @@ -1,6 +1,12 @@ mod any; +pub use crate::any::group::*; pub use crate::any::*; +mod markers; +pub mod marker { + pub use crate::markers::group_process::*; +} + pub mod error { pub use crate::asset::chain::error::*; pub use crate::exec::error::*; @@ -11,9 +17,6 @@ pub use crate::program::*; pub mod setup { pub use crate::program::setup::*; } -pub mod hint { - pub use crate::program::hint::*; -} mod renderer; |
